1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add go-github-com-keybase-go-keychain.

* gnu/packages/golang-xyz.scm (go-github-com-keybase-go-keychain): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I5a67c30b225a51c6387f853294b59f2da2c15244
This commit is contained in:
David Thompson 2025-06-02 13:56:25 +02:00 committed by Ludovic Courtès
parent 9ac848e2e9
commit 63472a1ed5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -10135,6 +10135,35 @@ Goroutine-safe connections)
@end itemize")
(license license:bsd-2)))
(define-public go-github-com-keybase-go-keychain
(package
(name "go-github-com-keybase-go-keychain")
(version "0.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/keybase/go-keychain")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0gkd839h8xnfiv0g52hm4p9snrcfgrnczrqf5wxr61sgg2w8h3y1"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/keybase/go-keychain"
;; Test suite tries to talk to dbus.
#:tests? #f))
(propagated-inputs (list go-golang-org-x-crypto
go-github-com-stretchr-testify
go-github-com-keybase-dbus))
(home-page "https://github.com/keybase/go-keychain")
(synopsis "Go library to access the keychain")
(description
"This package provides a library for accessing the keychain, typically
the @code{SecretService} D-Bus interface on GNU/Linux.")
(license license:expat)))
(define-public go-github-com-keybase-go-ps
(package
(name "go-github-com-keybase-go-ps")