3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add go-github-com-zalando-go-keyring.

* gnu/packages/golang.scm (go-github-com-zalando-go-keyring): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-09 16:12:05 +03:00
parent cff62457cc
commit ea60163a9d
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -5511,3 +5511,29 @@ and @code{ioutil} packages that is easy to test.")
(description "@code{dbus} is a library that implements native Go client
bindings for the D-Bus message bus system.")
(license license:bsd-2)))
(define-public go-github-com-zalando-go-keyring
(package
(name "go-github-com-zalando-go-keyring")
(version "0.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zalando/go-keyring")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0kj54nkiyccy6m9iy9a53f6412a54xk96j88jaiq35yzdgfa4z3p"))))
(build-system go-build-system)
(arguments
`(#:tests? #f ;XXX: Fix dbus tests
#:import-path "github.com/zalando/go-keyring"))
(native-inputs
`(("go-github-com-godbus-dbus" ,go-github-com-godbus-dbus)
("dbus" ,dbus)))
(home-page "https://github.com/zalando/go-keyring/")
(synopsis "Library for working with system keyring")
(description "@code{go-keyring} is a library for setting, getting and
deleting secrets from the system keyring.")
(license license:expat)))