guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-consult-notmuch.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-consult-notmuch.
Date: Thu, 08 Jul 2021 03:37:46 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9381f1f  gnu: Add emacs-consult-notmuch.
9381f1f is described below

commit 9381f1fa4aa5ba78d6fa5f5c6f5262d71c4f5199
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Wed Jul 7 17:12:47 2021 +0300

    gnu: Add emacs-consult-notmuch.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult-notmuch): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 530eb90..cee6b0f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8084,6 +8084,30 @@ Emacs completion function completing-read, which allows 
quickly selecting from a
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]