guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 5f04c79e0a309f544d106cf9f8d0aa376c891be8
Author: Aleksandr Lebedev <[email protected]>
AuthorDate: Sat Nov 15 23:20:39 2025 +0100
gnu: Add go-github-com-go-git-gcfg-v2.
* gnu/packages/golang-vcs.scm (go-github-com-go-git-gcfg-v2): New variable.
Change-Id: Ie10b64280c91000b17c061c14562ba3129c9718d
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-vcs.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm
index be72ac412e..dce72d57cc 100644
--- a/gnu/packages/golang-vcs.scm
+++ b/gnu/packages/golang-vcs.scm
@@ -155,6 +155,24 @@ using the Git pkt-line format used in various Git
operations.")
(description "Gcfg reads INI-style configuration files into Go structs.")
(license license:bsd-3)))
+(define-public go-github-com-go-git-gcfg-v2
+ (package
+ (inherit go-github-com-go-git-gcfg)
+ (name "go-github-com-go-git-gcfg-v2")
+ (version "2.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/go-git/gcfg")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08mdrcifml8bvl8hs36xm3j2bczb1phi5zfyvwzlid5zw06qrjl9"))))
+ (arguments
+ (list
+ #:import-path "github.com/go-git/gcfg/v2"))))
+
(define-public go-github-com-go-git-go-git-v5
(package
(name "go-github-com-go-git-go-git-v5")