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:
Andrew Tropin 2021-07-07 17:12:47 +03:00 committed by Nicolas Goaziou
parent 08f03de158
commit 9381f1fa4a
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")