guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 780643d35fea9df5aab7970e467a3a3e3762fe58
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Jul 10 16:52:00 2025 +0200

    gnu: Add emacs-consult-notes.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult-notes): New variable.
    
    Change-Id: I4b3b50a0d2834bcf3bfd409a2151d23826a89e11
    Signed-off-by: Hilton Chain <[email protected]>
    Modified-by: Hilton Chain <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3de02995d2..2acaf96fbf 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14213,6 +14213,35 @@ replaced with the directory you choose.")
 Consult.")
       (license license:gpl3+))))
 
+(define-public emacs-consult-notes
+  (let ((commit "7c9cd970c75fae9a6140ca1beefed9532d8e1b96")
+        (revision "0"))
+    (package
+      (name "emacs-consult-notes")
+      (version (git-version "0.7" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+                (url "https://github.com/mclear-tools/consult-notes/";)
+                (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1lccpnqqaai6vsjn9v65xhpzs0bmhrsyflaxg3n3iszigmsxrfaz"))))
+      (build-system emacs-build-system)
+      (arguments (list #:tests? #f))      ;no tests
+      (propagated-inputs (list emacs-consult emacs-dash emacs-s))
+      (home-page "https://github.com/mclear-tools/consult-notes/";)
+      (synopsis "Management of personal notes with @code{emacs-consult}")
+      (description
+       "This package allows selecting notes easily.  Its most basic use is to
+integrate directories of files (notes) and to provide easy narrowing via
+@code{emacs-consult}.  @code{consult-notes} can be used with any directory (or
+directories) of note files.  It easily integrates with note systems like
+@code{emacs-zk}, @code{emacs-denote} or @code{emacs-org-roam}.  Additionally, 
it
+may also search org headings in a set of specified files.")
+      (license license:gpl3+))))
+
 (define-public emacs-consult-notmuch
   (package
     (name "emacs-consult-notmuch")

Reply via email to