ngz pushed a commit to branch master
in repository guix.

commit 68ac2cccfbe8e0562125201034ea61e8b63dab66
Author: Wilko Meyer <[email protected]>
AuthorDate: Sat Jul 20 23:18:31 2024 +0200

    gnu: Add emacs-consult-denote.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult-denote): New variable.
    
    Change-Id: I9c65cfb3b9d3a3906a8492b9aa5d1dab04f39869
    Signed-off-by: Nicolas Goaziou <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b54c82db18..9a33622875 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12504,6 +12504,26 @@ list of candidates.")
 completion using Consult.")
       (license license:gpl3+))))
 
+(define-public emacs-consult-denote
+  (package
+    (name "emacs-consult-denote")
+    (version "0.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/consult-denote-";
+                           version ".tar"))
+       (sha256
+        (base32 "0yhf9fifas87rs4wdapszbpx1xqyq44izjq7vzpyvdlh5a5fhhx1"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-consult emacs-denote))
+    (home-page "https://github.com/protesilaos/consult-denote";)
+    (synopsis "Consult interface for Denote")
+    (description
+     "Consult Denote provides commands to interact with Emacs Denote using
+a Completing Read interface.")
+    (license license:gpl3+)))
+
 (define-public emacs-consult-dir
   (package
     (name "emacs-consult-dir")

Reply via email to