diff options
author | Christopher Baines <mail@cbaines.net> | 2018-01-21 10:42:14 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-01-30 07:41:29 +0000 |
commit | f8ce6eb6d22f87dccac4a98813ff5cd51598c468 (patch) | |
tree | d55fa5379e885c5a192bafc7ffe02ec6e2ecea84 /gnu | |
parent | d0c2f81c500bf18a592e3ad1b85db6c8f9185415 (diff) | |
download | patches-f8ce6eb6d22f87dccac4a98813ff5cd51598c468.tar patches-f8ce6eb6d22f87dccac4a98813ff5cd51598c468.tar.gz |
gnu: Add go-github.com-howeyc-gopass.
* gnu/packages/terminals.scm (go-github.com-howeyc-gopass): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/terminals.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 3baaf6612b..b480844c39 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")) + (propagated-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)))) |