From 31960f6fd28a3a8883fd68d5bcbce5d2d339019a Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 14 Mar 2019 20:32:16 +0100 Subject: 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(+) (limited to 'gnu/packages/emacs-xyz.scm') diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ead4c19319..9fdb00efb9 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+)))) -- cgit v1.2.3