guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 066844ee18e40c78bf4c4b5ea60c4589e441bcd1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Sep 26 17:05:05 2025 +0100
gnu: Add go-github-com-cpuguy83-dockercfg.
* gnu/packages/golang-xyz.scm (go-github-com-cpuguy83-dockercfg): New
variable.
Change-Id: I0cb364c5c0e27672b54d0c7a31fd66d0b470f880
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 248b1123ed..2a8cfabaaa 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5047,6 +5047,30 @@ https://github.com/cowsql/cowsql} C library and a pure
Golang client for the
https://github.com/cowsql/cowsql/blob/main/doc/protocol.md}.")
(license license:asl2.0)))
+(define-public go-github-com-cpuguy83-dockercfg
+ (package
+ (name "go-github-com-cpuguy83-dockercfg")
+ (version "0.3.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cpuguy83/dockercfg")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "055gxyq0wvyr9lap6rd49ijyg846mcpd1kwx9w69qj0pszvh2v96"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/cpuguy83/dockercfg"))
+ (home-page "https://github.com/cpuguy83/dockercfg")
+ (synopsis "Library to load Docker CLI configs")
+ (description
+ "Go library to load docker CLI configs, auths, etc. with minimal deps.
+ So far the only deps are on the stdlib.")
+ (license license:expat)))
+
(define-public go-github-com-crackcomm-go-gitignore
(package
(name "go-github-com-crackcomm-go-gitignore")