mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add emacs-zk.
* gnu/packages/emacs-xyz.scm (emacs-zk): New variable. Change-Id: Iaa2978ece44faef01d6a57ff65e178dcfd925db2
This commit is contained in:
parent
76b8973d76
commit
e91d2f7868
1 changed files with 39 additions and 0 deletions
|
@ -7652,6 +7652,45 @@ (define-public emacs-zig-mode
|
|||
for the Zig programming language in Emacs.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-zk
|
||||
(package
|
||||
(name "emacs-zk")
|
||||
(version "0.7")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/localauthor/zk/")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0449zsahyzvjlhv27lkj33ybnq86j47paww779zd0qhq550hdnjs"))))
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ; There are no tests.
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'configure
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "zk.el"
|
||||
(("\"grep")
|
||||
(string-append
|
||||
"\""
|
||||
(search-input-file inputs "/bin/grep")))
|
||||
(("\"egrep")
|
||||
(string-append
|
||||
"\""
|
||||
(search-input-file inputs "/bin/egrep")))))))))
|
||||
(propagated-inputs (list emacs-citar emacs-link-hint))
|
||||
(inputs (list grep))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/localauthor/zk/")
|
||||
(synopsis "Zettelkasten-style linked notes for Emacs")
|
||||
(description
|
||||
"Emacs packages for working with Zettelkasten-style linked notes.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-znc
|
||||
(package
|
||||
(name "emacs-znc")
|
||||
|
|
Loading…
Reference in a new issue