diff options
author | Nicolas Graves via Guix-patches via <guix-patches@gnu.org> | 2022-09-12 08:49:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-09-13 14:48:46 +0200 |
commit | 1a89db2c0eb8fdbbf208561f4e2f422cce8c196f (patch) | |
tree | f97104a1d194d9b082d55342235b44225ee09946 | |
parent | 4d15eb23680b11f5251bc0f5ad2ff08d03d1e2fd (diff) | |
download | guix-1a89db2c0eb8fdbbf208561f4e2f422cce8c196f.tar.gz guix-1a89db2c0eb8fdbbf208561f4e2f422cce8c196f.zip |
gnu: Add emacs-ednc.
* gnu/packages/emacs-xyz.scm (emacs-ednc): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-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 19be038746..3c948c007e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29741,6 +29741,30 @@ It also provides original Helm commands: @command{helm-cider-spec}, data format @code{edn}. See @url{https://github.com/edn-format/edn}.") (license license:gpl3+)))) +(define-public emacs-ednc + (let ((commit "940a4adbbeb3b6b1a72270a814d52770dd89a997") + (revision "1")) + (package + (name "emacs-ednc") + (version (git-version "0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sinic/ednc") + (commit commit))) + (sha256 + (base32 "1gsx2qgv5xm9r0i0axd4hf31g2rq2m4a1hvnif48g4xb0llss73c")))) + (build-system emacs-build-system) + (home-page "https://github.com/sinic/ednc") + (synopsis "Emacs Desktop Notification Center") + (description + "The Emacs Desktop Notification Center (EDNC) is an Emacs package written +in pure Lisp that implements a Desktop Notifications service according to the +freedesktop.org specification. EDNC aspires to be a small, but flexible +drop-in replacement of standalone daemons like Dunst.") + (license license:gpl3+)))) + (define-public emacs-helm-clojuredocs (let ((commit "5a7f0f2cb401be0b09e73262a1c18265ab9a3cea")) (package |