guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit ab048e4d5b690ce60ebaadae5cbb790b5794e405
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 22:49:52 2026 +0000
gnu: go-1.26: Update to 1.26rc2.
* gnu/packages/golang.scm (go-1.26): Update to 1.26rc2.
[native-inputs]: Use go-1.24 for bootstrap.
Change-Id: I0c60c4af5091edede6cec865590c3fcd10074f3b
---
gnu/packages/golang.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b359a44720..278eedc142 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1170,7 +1170,7 @@ in the style of communicating sequential processes
(@dfn{CSP}).")
(package
(inherit go-1.24)
(name "go")
- (version "1.26rc1")
+ (version "1.26rc2")
(source
(origin
(method git-fetch)
@@ -1179,7 +1179,7 @@ in the style of communicating sequential processes
(@dfn{CSP}).")
(commit (string-append "go" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1a837mgsfiq3rqnp67kgw83hvq8p61j1yafhlqw4yzp78bz67sdf"))))
+ (base32 "1gx9f1904qmryzwcnj7bfah9izwz0b1fzfnd59yvk9ydnpxnrz63"))))
(arguments
(substitute-keyword-arguments (package-arguments go-1.24)
((#:phases phases)
@@ -1194,8 +1194,7 @@ in the style of communicating sequential processes
(@dfn{CSP}).")
(string-append all "\n
t.Skip(\"golang.org/issue/73977\")\n")))))))))
(native-inputs
;; Go 1.26 and later requires Go 1.24.6+ as the bootstrap toolchain.
- ;; TODO: Switch this to go-1.24 when [email protected] is updated.
- (alist-replace "go" (list go-1.25) (package-native-inputs go-1.25)))))
+ (alist-replace "go" (list go-1.24) (package-native-inputs go-1.25)))))
;;
;; Default Golang version used in guix/build-system/go.scm to build packages.