1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-30 14:01:15 +02:00

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 <sharlatanus@gmail.com>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
This commit is contained in:
Aleksandr Lebedev
2025-11-15 23:20:39 +01:00
committed by Rutherther
parent a5542da871
commit f2f5d6b884

View File

@@ -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")