diff options
author | Hilton Chain <hako@ultrarare.space> | 2022-11-21 14:46:54 +0800 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-22 09:24:15 +0000 |
commit | d54febb86ff71a93a8a62957658512ca4727f89d (patch) | |
tree | a046b4e91284a78e8296d6bfa4a833003d508d64 /gnu | |
parent | 07746c2b153dfeacf714261f330c04d42e570f3c (diff) | |
download | guix-d54febb86ff71a93a8a62957658512ca4727f89d.tar guix-d54febb86ff71a93a8a62957658512ca4727f89d.tar.gz |
gnu: Add emacs-ebuku.
* gnu/packages/emacs-xyz.scm (emacs-ebuku): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 754d2e3cb8..85bed7037b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13353,6 +13353,30 @@ Lua programming language}.") news items, openrc and runscripts.") (license license:gpl2+))) +(define-public emacs-ebuku + ;; Upstream has no tagged release. + (let ((revision "0") + (commit "5b8bf34b8ea5d05f0b8dfc12bfea825f9cffbeda")) + (package + (name "emacs-ebuku") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/flexibeast/ebuku") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "04733lqa6z3kmdjcgdi58q3wrqan2qib43rvjw51qc739fwmwb5y")))) + (build-system emacs-build-system) + (home-page "https://github.com/flexibeast/ebuku") + (synopsis "Emacs interface to the buku Web bookmark manager") + (description + "Ebuku provides a basic interface to the @code{buku} Web bookmark +manager.") + (license license:gpl3+)))) + (define-public emacs-evil ;; Commit message claims this is 1.15.0, but there's no tag for it, so we ;; use full git-version instead |