mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add emacs-consult-notmuch.
* gnu/packages/emacs-xyz.scm (emacs-consult-notmuch): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
08f03de158
commit
9381f1fa4a
1 changed files with 24 additions and 0 deletions
|
@ -8084,6 +8084,30 @@ (define-public emacs-consult
|
|||
list of candidates.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-consult-notmuch
|
||||
(package
|
||||
(name "emacs-consult-notmuch")
|
||||
(version "0.3")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://codeberg.org/jao/consult-notmuch")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "19flyh3v1xm2zswzjkvjbijvpbq5r8isafza4fd0yicvqbjyklhx"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-consult" ,emacs-consult)
|
||||
("notmuch" ,notmuch)))
|
||||
(home-page "https://codeberg.org/jao/consult-notmuch")
|
||||
(synopsis "Search and preview Notmuch emails using Consult")
|
||||
(description
|
||||
"This package provides two commands using consult to query Notmuch emails
|
||||
and present results either as single emails or full trees.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-marginalia
|
||||
(package
|
||||
(name "emacs-marginalia")
|
||||
|
|
Loading…
Reference in a new issue