gnu: go-gopkg-in-yaml-v3: Update to 3.0.1.

This addresses an apparent upstream hash change, which was actually our
own fault: the Guix package underspecified the version as ‘3’ instead of
‘3.0.0’, hence treating the ‘v3’ *branch* as a tag.

Guix's hash for ‘3’ never matched upstream's ‘3.0.0’ release, so upgrade
straight to ‘3.0.1’.

* gnu/packages/golang.scm (go-gopkg-in-yaml-v3): Update to 3.0.1.

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
Gleb Zakharov 2022-12-09 16:04:37 +01:00 committed by Tobias Geerinckx-Rice
parent ce5b94cb79
commit 630b6e62d2
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -4695,7 +4695,7 @@ (define-public go-gopkg-in-yaml-v2
(define-public go-gopkg-in-yaml-v3 (define-public go-gopkg-in-yaml-v3
(package (package
(name "go-gopkg-in-yaml-v3") (name "go-gopkg-in-yaml-v3")
(version "3") (version "3.0.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -4704,7 +4704,7 @@ (define-public go-gopkg-in-yaml-v3
(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 "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g")))) (base32 "01b0wjb7yzv8wzzz2iim8mjpkwjnykcanrwiq06pkl89lr6gv8hn"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
'(#:import-path "gopkg.in/yaml.v3")) '(#:import-path "gopkg.in/yaml.v3"))