From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36937) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fQV07-0002wx-9x for guix-patches@gnu.org; Wed, 06 Jun 2018 05:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fQV02-0001t3-Az for guix-patches@gnu.org; Wed, 06 Jun 2018 05:45:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56220) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fQV02-0001sd-7D for guix-patches@gnu.org; Wed, 06 Jun 2018 05:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fQV01-0005SA-NW for guix-patches@gnu.org; Wed, 06 Jun 2018 05:45:01 -0400 Subject: [bug#31501] [PATCH 17/21] gnu: Add emacs-helm-mu. References: <20180518184910.9987-3-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-3-ambrevar@gmail.com> Resent-Message-ID: From: Pierre Neidhardt Date: Wed, 6 Jun 2018 11:44:34 +0200 Message-Id: <20180606094434.13981-1-ambrevar@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31501@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-mu): New variable. --- gnu/packages/emacs.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1210d5c78..a0d2f4f9b 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -11058,3 +11058,35 @@ projects unrelated to current-buffer. @item In addition, all actions of type files and buffers are provided. @end itemize\n") (license license:gpl3+)))) + +(define-public emacs-helm-mu + (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf")) + (package + (name "emacs-helm-mu") + (version (git-version "20180513" "1" commit)) + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/emacs-helm/helm-mu/archive/" + commit + ".tar.gz")) + (sha256 + (base32 + "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm) + ("mu" ,mu))) + (home-page + "https://github.com/emacs-helm/helm-mu") + (synopsis + "Helm sources for searching emails and contacts") + (description + "Helm sources for searching emails and contacts using @code{mu} and +@code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for +Emacs build on top of mu. Mu is highly efficient making it possible +to get instant results even for huge maildirs. It also provides +search operators similar to Google Mail, e.g: +@code{from:Peter to:Anne flag:attach search term}") + (license license:gpl3+)))) -- 2.17.0