summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-21 10:46:49 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-26 00:39:39 +0100
commit6c082f7d66c4cbce6ed856cc811ea00999c583c8 (patch)
tree826e7a12772afe8239b0bc0efd12d7a23fb27e8d /gnu
parent34fbece2809588a9858c43bb7b73220f194ccd1b (diff)
gnu: go-1.27: Update to 1.27.0 and deprecate go-next in favor of it.
* gnu/packages/golang.scm (go-1.27): Update to 1.27.0. [name]: Change to "go". (go-next): New variable. Merges: guix/guix!10699
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index dafa3b9f588..ef40cfa58d4 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1175,8 +1175,8 @@ in the style of communicating sequential processes (@dfn{CSP}).")
1175(define-public go-1.27 1175(define-public go-1.27
1176 (package 1176 (package
1177 (inherit go-1.26) 1177 (inherit go-1.26)
1178 (name "go-next") 1178 (name "go")
1179 (version "1.27rc3") 1179 (version "1.27.0")
1180 (source 1180 (source
1181 (origin 1181 (origin
1182 (method git-fetch) 1182 (method git-fetch)
@@ -1185,8 +1185,11 @@ in the style of communicating sequential processes (@dfn{CSP}).")
1185 (commit (string-append "go" version)))) 1185 (commit (string-append "go" version))))
1186 (file-name (git-file-name name version)) 1186 (file-name (git-file-name name version))
1187 (sha256 1187 (sha256
1188 (base32 "1vhvsh61r6fablamy5gs2by7n2w55bds7bdygnz1z6s26rcj6r0g")))))) 1188 (base32 "0mkcpsyydcrx8rwym53fv05a4m4ddnxbw5vh8vb3xmcya3g9qqar"))))))
1189 1189
1190;; This is a placeholder for the next RC version when it's tagged.
1191(define-public go-next
1192 (deprecated-package "go-next" go-1.27))
1190;; 1193;;
1191;; Default Golang version used in guix/build-system/go.scm to build packages. 1194;; Default Golang version used in guix/build-system/go.scm to build packages.
1192;; 1195;;