mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add go-1.22 and its standard library.
* gnu/packages/golang.scm (go-1.22): New variable. * gnu/packages/golang.scm (go-std-1.22): New variable. Change-Id: I18d92874d4131843e7c6cf0e8d89f2946f7b972d Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
0bce74d458
commit
bbb1a7b5ed
1 changed files with 34 additions and 0 deletions
|
@ -45,6 +45,7 @@
|
|||
;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||
;;; Copyright © 2024 Greg Hogan <code@greghogan.com>
|
||||
;;; Copyright © 2024 Brennan Vincent <brennan@umanwizard.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1114,6 +1115,38 @@ (define-public go-1.21
|
|||
("api" "share/go/api" ,tests)
|
||||
("test" "share/go/test" ,tests))))))))))))
|
||||
|
||||
(define-public go-1.22
|
||||
(package
|
||||
(inherit go-1.21)
|
||||
(name "go")
|
||||
(version "1.22.0")
|
||||
(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 "00j6sn2zysk5pdzxw1wfdi31wggzw1h1026ah3x3mi85dwsijhjs"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments go-1.21)
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'unpatch-perl-shebangs
|
||||
(lambda _
|
||||
;; Avoid inclusion of perl in closure by rewriting references
|
||||
;; to perl input in sourcecode generators and test scripts
|
||||
(substitute* (find-files "src" "\\.pl$")
|
||||
(("^#!.*")
|
||||
"#!/usr/bin/env perl\n"))))))))
|
||||
(native-inputs
|
||||
;; Go 1.22 and later requires Go 1.20 (min. 1.20.6, which we don't have)
|
||||
;; as the bootstrap toolchain.
|
||||
(alist-replace "go"
|
||||
(list go-1.21)
|
||||
(package-native-inputs go-1.21)))))
|
||||
|
||||
(define-public go go-1.17)
|
||||
|
||||
(define make-go-std
|
||||
|
@ -1157,6 +1190,7 @@ (define-public go-std-1.18 (make-go-std go-1.18))
|
|||
(define-public go-std-1.19 (make-go-std go-1.19))
|
||||
(define-public go-std-1.20 (make-go-std go-1.20))
|
||||
(define-public go-std-1.21 (make-go-std go-1.21))
|
||||
(define-public go-std-1.22 (make-go-std go-1.22))
|
||||
|
||||
(define-public go-0xacab-org-leap-shapeshifter
|
||||
(let ((commit "0aa6226582efb8e563540ec1d3c5cfcd19200474")
|
||||
|
|
Loading…
Reference in a new issue