mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05: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:
parent
cff62457cc
commit
ea60163a9d
1 changed files with 26 additions and 0 deletions
|
@ -5511,3 +5511,29 @@ (define-public go-github-com-godbus-dbus
|
|||
(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)))
|
||||
|
|
Loading…
Reference in a new issue