guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d9fbe7032c809820a45adfcfa48f3b344c63d126
Author: David Thompson <da...@gnu.org>
AuthorDate: Mon Jun 2 13:57:38 2025 +0200

    gnu: Add go-github-com-docker-docker-credential-helpers.
    
    * gnu/packages/golang-xyz.scm 
(go-github-com-docker-docker-credential-helpers): New variable.
    
    Co-authored-by: Ludovic Courtès <l...@gnu.org>
    Change-Id: I7fb57646988a0742d64de423311f284c19531742
---
 gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 28f61992a8..df2c09b683 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5104,6 +5104,35 @@ store, and deliver content.  It contains Docker Registry 
2.0 and libraries to
 interact with distribution components.")
     (license license:asl2.0)))
 
+(define-public go-github-com-docker-docker-credential-helpers
+  (package
+    (name "go-github-com-docker-docker-credential-helpers")
+    (version "0.9.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/docker/docker-credential-helpers";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0y9chbmp70sjz88j4yy8p68f8n9x2rl9r4z25kd77s31cbdkg707"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/docker/docker-credential-helpers"
+      #:skip-build? #t
+      #:tests? #f))
+    (propagated-inputs (list go-github-com-keybase-go-keychain
+                             go-github-com-danieljoos-wincred))
+    (home-page "https://github.com/docker/docker-credential-helpers";)
+    (synopsis
+     "Keep Docker login credentials safe by storing in platform keystores")
+    (description
+     "docker-credential-helpers is a suite of programs to use native stores to 
keep
+Docker credentials safe.")
+    (license license:expat)))
+
 (define-public go-github-com-docker-go-units
   (package
     (name "go-github-com-docker-go-units")

Reply via email to