rosenthal: Remove go-1.24.

* modules/rosenthal/packages/golang.scm (go-1.24): Delete variable.
This commit is contained in:
Hilton Chain 2025-05-29 00:13:40 +08:00
parent fbef0d3861
commit 9073ac0309
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292

View File

@ -8,27 +8,6 @@
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (gnu packages golang)) #:use-module (gnu packages golang))
(define-public go-1.24
(package
(inherit go-1.23)
(name "go")
(version "1.24.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/golang/go")
(commit (string-append "go" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1b24pdsxrarw22gffv85sghpgvgamafvwwrvvhmyv3hqf89m97zk"))))
(native-inputs
;; Go 1.24 and later requires Go 1.22+ as the bootstrap toolchain.
(alist-replace "go" (list go-1.22) (package-native-inputs go-1.23)))
(properties
`(,@(package-properties go-1.23)
(disable-updater? . #t)))))
(define-public go-cloudflare (define-public go-cloudflare
(let ((commit "37bc41c6ff79507200a315b72834fce6ca427a7e") (let ((commit "37bc41c6ff79507200a315b72834fce6ca427a7e")
(revision "0")) (revision "0"))