From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54885) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ee561-0002GI-Gj for guix-patches@gnu.org; Tue, 23 Jan 2018 15:23:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ee55y-00017u-7R for guix-patches@gnu.org; Tue, 23 Jan 2018 15:23:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:60336) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ee55y-00017c-3a for guix-patches@gnu.org; Tue, 23 Jan 2018 15:23:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ee55x-0007r4-Qi for guix-patches@gnu.org; Tue, 23 Jan 2018 15:23:01 -0500 Subject: [bug#30214] [PATCH 02/10] gnu: Add go-github.com-howeyc-gopass. Resent-Message-ID: From: Christopher Baines Date: Tue, 23 Jan 2018 20:21:54 +0000 Message-Id: <20180123202202.32140-2-mail@cbaines.net> In-Reply-To: <20180123202202.32140-1-mail@cbaines.net> References: <20180123202202.32140-1-mail@cbaines.net> 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: 30214@debbugs.gnu.org * gnu/packages/terminals.scm (go-github.com-howeyc-gopass): New variable. --- gnu/packages/terminals.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 3baaf6612..687cfc3f4 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -609,3 +609,31 @@ desktop installed to have a decent terminal emulator.") with terminals in Go.") (home-page "https://go.googlesource.com/crypto/") (license license:bsd-3)))) + +(define-public go-github.com-howeyc-gopass + (let ((commit "bf9dde6d0d2c004a008c27aaee91170c786f6db8") + (revision "0")) + (package + (name "go-github.com-howeyc-gopass") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/howeyc/gopass.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1jxzyfnqi0h1fzlsvlkn10bncic803bfhslyijcxk55mgh297g45")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/howeyc/gopass")) + (native-inputs + `(("go-golang.org-x-crypto-ssh-terminal" + ,go-golang.org-x-crypto-ssh-terminal))) + (synopsis "Retrieve password from a terminal or piped input in Go") + (description + "@code{gopass} is a Go package for retrieving a password from user +terminal or piped input.") + (home-page "https://github.com/howeyc/gopass") + (license license:isc)))) -- 2.16.0