1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: go-github-com-songmu-gitconfig: Update to 0.1.1.

* gnu/packages/golang-xyz.scm (go-github-com-songmu-gitconfig): Update
to 0.1.1.
[source]: Use direct URL string instead of home-page.
[home-page]: Move above synopsis.

Change-Id: I6669bd6a3d25ae652b2d20441a29fdc3e0a318f7
This commit is contained in:
Sharlatan Hellseher 2024-04-06 10:03:08 +01:00
parent 59a8b156a8
commit ace24a2765
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2549,17 +2549,16 @@ Use waterutil with it to work with TUN/TAP packets/frames.")
(define-public go-github-com-songmu-gitconfig (define-public go-github-com-songmu-gitconfig
(package (package
(name "go-github-com-songmu-gitconfig") (name "go-github-com-songmu-gitconfig")
(version "0.1.0") (version "0.1.1")
(home-page "https://github.com/songmu/gitconfig")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url home-page) (url "https://github.com/songmu/gitconfig")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1y01h496a7pfj1g2bclls5b0nl3vnj7nz610jj1dzq9kxrwxk7fk")))) (base32 "0p7b5n4h4vsjpb7ipfn4n1p8i978d8mlx8pi0m5dla57mj8v56hj"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
(list (list
@ -2570,6 +2569,7 @@ Use waterutil with it to work with TUN/TAP packets/frames.")
#:import-path "github.com/Songmu/gitconfig")) #:import-path "github.com/Songmu/gitconfig"))
(propagated-inputs (propagated-inputs
(list go-github-com-goccy-yaml)) (list go-github-com-goccy-yaml))
(home-page "https://github.com/songmu/gitconfig")
(synopsis "Go library to get configuration values from gitconfig") (synopsis "Go library to get configuration values from gitconfig")
(description (description
"@{gitconfig} is a package to get configuration values from gitconfig.") "@{gitconfig} is a package to get configuration values from gitconfig.")