gnu: go-1.22: Update to 1.22.6.

* gnu/packages/golang.scm (go-1.22): Update to 1.22.6.

Change-Id: I6f2146598b82c251cb31cc7320eef00bbfec6faa
This commit is contained in:
Sharlatan Hellseher 2024-08-28 23:47:38 +01:00
parent 20f19261e4
commit fd0eb4662b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -951,7 +951,7 @@ (define-public go-1.22
(package (package
(inherit go-1.21) (inherit go-1.21)
(name "go") (name "go")
(version "1.22.5") (version "1.22.6")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -960,7 +960,7 @@ (define-public go-1.22
(commit (string-append "go" version)))) (commit (string-append "go" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1ahcxhyfr4wa4yahpl1jzdr1pizp5xpa6cy96jz649zsp21640d9")))) (base32 "1rjplx7wa6p2c19grx6hhkhn16mmbib5cwmhz9k8ywymlbmhhsyd"))))
(arguments (arguments
(substitute-keyword-arguments (package-arguments go-1.21) (substitute-keyword-arguments (package-arguments go-1.21)
((#:phases phases) ((#:phases phases)
@ -981,9 +981,7 @@ (define-public go-1.22
(native-inputs (native-inputs
;; Go 1.22 and later requires Go 1.20 (min. 1.20.6, which we don't have) ;; Go 1.22 and later requires Go 1.20 (min. 1.20.6, which we don't have)
;; as the bootstrap toolchain. ;; as the bootstrap toolchain.
(alist-replace "go" (alist-replace "go" (list go-1.21) (package-native-inputs go-1.21)))))
(list go-1.21)
(package-native-inputs go-1.21)))))
;; ;;
;; Default Golang version used in guix/build-system/go.scm to build packages. ;; Default Golang version used in guix/build-system/go.scm to build packages.