guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

56/60: gnu: Add go-github-com-zalando-go-keyring.


From: guix-commits
Subject: 56/60: gnu: Add go-github-com-zalando-go-keyring.
Date: Sun, 9 Aug 2020 10:25:07 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit ea60163a9d2462581ff584dba55cfa20b6acee49
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 16:12:05 2020 +0300

    gnu: Add go-github-com-zalando-go-keyring.
    
    * gnu/packages/golang.scm (go-github-com-zalando-go-keyring): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3040eef..c19b944 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]