From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkS7-0007at-6V for guix-patches@gnu.org; Fri, 18 May 2018 14:50:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkS6-0000bs-4o for guix-patches@gnu.org; Fri, 18 May 2018 14:50:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60494) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkS6-0000bo-0r for guix-patches@gnu.org; Fri, 18 May 2018 14:50:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkS3-0001RZ-Ty for guix-patches@gnu.org; Fri, 18 May 2018 14:50:05 -0400 Subject: [bug#31501] [PATCH 17/21] gnu: emacs-helm-mu: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54192) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRJ-0006MU-Fi for guix-patches@gnu.org; Fri, 18 May 2018 14:49:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRI-0008Ge-JL for guix-patches@gnu.org; Fri, 18 May 2018 14:49:17 -0400 Received: from mail-wr0-x236.google.com ([2a00:1450:400c:c0c::236]:41268) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRI-0008G1-Cp for guix-patches@gnu.org; Fri, 18 May 2018 14:49:16 -0400 Received: by mail-wr0-x236.google.com with SMTP id w15-v6so2606087wrp.8 for ; Fri, 18 May 2018 11:49:16 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id q2-v6sm8369863wrj.57.2018.05.18.11.49.14 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:14 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:48:52 +0200 Message-Id: <20180518184910.9987-3-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-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 | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 8ad90560f..baffb94bd 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10937,3 +10937,32 @@ ack-grep instead of grep). to current-buffer. - In addition, all actions of type files and buffers are provided. ") (license license:gpl3+))) + +(define-public emacs-helm-mu + (package + (name "emacs-helm-mu") + (version "20180513.221") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/helm-mu-" + version + ".el")) + (sha256 + (base32 + "1l545nr6ifdgmxriw5pqlsqzw9ww0x1f32wpl1ziwyb672h9r5aj")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-helm" ,emacs-helm))) + (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