From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38536) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL4l1-0003Ke-K0 for guix-patches@gnu.org; Tue, 22 May 2018 06:43:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL4l0-0006QC-Nl for guix-patches@gnu.org; Tue, 22 May 2018 06:43:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35822) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL4l0-0006Q6-Jo for guix-patches@gnu.org; Tue, 22 May 2018 06:43:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fL4l0-00050d-E0 for guix-patches@gnu.org; Tue, 22 May 2018 06:43:06 -0400 Subject: [bug#31500] [PATCH 17/20] gnu: Add emacs-helm-pass. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38217) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL4kB-0002aJ-Fr for guix-patches@gnu.org; Tue, 22 May 2018 06:42:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL4k7-00060K-K9 for guix-patches@gnu.org; Tue, 22 May 2018 06:42:15 -0400 Received: from mail-wm0-x233.google.com ([2a00:1450:400c:c09::233]:55486) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL4k7-0005zz-E3 for guix-patches@gnu.org; Tue, 22 May 2018 06:42:11 -0400 Received: by mail-wm0-x233.google.com with SMTP id a8-v6so30518869wmg.5 for ; Tue, 22 May 2018 03:42:11 -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 67-v6sm22437230wmw.32.2018.05.22.03.42.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 22 May 2018 03:42:09 -0700 (PDT) From: Pierre Neidhardt Date: Tue, 22 May 2018 12:41:30 +0200 Message-Id: <20180522104133.26049-17-ambrevar@gmail.com> In-Reply-To: <20180522104133.26049-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> <20180522104133.26049-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: 31500@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-pass): 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 18fce21fc..981731bd9 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10969,3 +10969,35 @@ 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+))) + +(define-public emacs-helm-pass + (package + (name "emacs-helm-pass") + (version "20180415.2038") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/helm-pass-" + version + ".el")) + (sha256 + (base32 + "1pwf05h29mrn05y7fhznwn0czl7ixynkvmy1fxljj45qdq2r6n8v")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm) + ("emacs-password-store" ,emacs-password-store))) + ;; TODO: Need auth-source-pass with Emacs<26? + (home-page + "https://github.com/jabranham/helm-pass") + (synopsis + "Helm interface of pass, the standard Unix password manager") + (description + "Users of @code{helm-pass} may also be interested in functionality +provided by other Emacs packages dealing with pass: +- @code{emacs-password-store}, which @code{helm-pass} relies on. +- @code{emacs-pass}, a major mode for @code{pass}. +- @code{auth-source-pass.el}: integration of Emacs' auth-source with +@code{pass}, included in Emacs 26+).") + (license license:gpl3+))) -- 2.17.0