From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37305) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fQV14-0003Tj-Jq for guix-patches@gnu.org; Wed, 06 Jun 2018 05:46:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fQV10-0002Nf-2c for guix-patches@gnu.org; Wed, 06 Jun 2018 05:46:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56225) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fQV0z-0002NZ-UE for guix-patches@gnu.org; Wed, 06 Jun 2018 05:46:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fQV0z-0005Tt-OP for guix-patches@gnu.org; Wed, 06 Jun 2018 05:46:01 -0400 Subject: [bug#31505] [PATCH 18/21] gnu: Add emacs-helm-pass. References: <20180518184910.9987-7-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-7-ambrevar@gmail.com> Resent-Message-ID: From: Pierre Neidhardt Date: Wed, 6 Jun 2018 11:45:24 +0200 Message-Id: <20180606094524.14699-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: 31505@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-pass): New variable. --- gnu/packages/emacs.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index a0d2f4f9b..06764de1a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -11090,3 +11090,37 @@ 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 + (let ((commit "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb")) + (package + (name "emacs-helm-pass") + (version (git-version "20180416" "1" commit)) + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/jabranham/helm-pass/archive/" + commit + ".tar.gz")) + (sha256 + (base32 + "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm) + ("emacs-password-store" ,emacs-password-store))) + (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: +@itemize +@item @code{emacs-password-store}, which @code{helm-pass} relies on. +@item @code{emacs-pass}, a major mode for @code{pass}. +@item @code{auth-source-pass.el}: integration of Emacs' auth-source with +@code{pass}, included in Emacs 26+). +@end itemize\n") + (license license:gpl3+)))) -- 2.17.0