From 066844ee18e40c78bf4c4b5ea60c4589e441bcd1 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 26 Sep 2025 17:05:05 +0100 Subject: [PATCH] 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 248b1123edf716143cd7e5826d9a6a323922062b..2a8cfabaaaf2761f4da26f0c8a425bf569f055e2 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")