guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-helm-notmuch.


From: guix-commits
Subject: 01/01: gnu: Add emacs-helm-notmuch.
Date: Thu, 14 Mar 2019 18:55:56 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 31960f6fd28a3a8883fd68d5bcbce5d2d339019a
Author: Pierre Neidhardt <address@hidden>
Date:   Thu Mar 14 20:32:16 2019 +0100

    gnu: Add emacs-helm-notmuch.
    
    * gnu/packages/emacs-xyz.scm (emacs-helm-notmuch): New variable.
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ead4c19..9fdb00e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13506,3 +13506,29 @@ like @code{company}, @code{flycheck}, and 
@code{projectile}.")
 @code{lsp-mode}, such as visual flychecking, displaying references in-line,
 and code peeking.")
     (license license:gpl3+)))
+
+(define-public emacs-helm-notmuch
+  (let ((commit "9988eb0f787c82c779f2417b5613b9142a5b1c9b"))
+    (package
+      (name "emacs-helm-notmuch")
+      (version (git-version "1.1" "1" commit))
+      (home-page "https://github.com/xuchunyang/helm-notmuch/";)
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url home-page)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1jwhmlqlgzxj2zfz0za33vn8m2zrsmkmnq2vx5i1nry70p9h43b4"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-helm" ,emacs-helm)
+         ("notmuch" ,notmuch)))
+      (synopsis "Search emails with Emacs Notmuch and Helm")
+      (description
+       "This package can be used to search emails in Emacs, searching result
+displays as you type thanks to Helm, though @command{notmuch-search} does the
+real search.")
+      (license license:gpl3+))))



reply via email to

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