diff options
author | David Thompson <davet@gnu.org> | 2025-06-02 13:56:25 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-17 15:17:18 +0200 |
commit | 63472a1ed5be2d89c7585f6735721e97f82a1247 (patch) | |
tree | 3d885c69d61c7ab3bc1e7a524f3e09aac6d323c8 /gnu/packages/golang-xyz.scm | |
parent | 9ac848e2e90a4bbae84fd02a4849f8a9583947f9 (diff) |
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
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index f2eae9948f..28f61992a8 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") |