summaryrefslogtreecommitdiff
path: root/gnu/packages/emacs-xyz.scm
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-07-10 16:52:00 +0200
committerHilton Chain <hako@ultrarare.space>2025-07-24 15:42:43 +0800
commit780643d35fea9df5aab7970e467a3a3e3762fe58 (patch)
tree48f8a77b0290fdc096fe34fe39563c07cc00687f /gnu/packages/emacs-xyz.scm
parenta02221fc34dbc6f328f59eeffccdb2312b9cdb95 (diff)
gnu: Add emacs-consult-notes.
* gnu/packages/emacs-xyz.scm (emacs-consult-notes): New variable. Change-Id: I4b3b50a0d2834bcf3bfd409a2151d23826a89e11 Signed-off-by: Hilton Chain <hako@ultrarare.space> Modified-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r--gnu/packages/emacs-xyz.scm29
1 files changed, 29 insertions, 0 deletions
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")