diff options
author | Hilton Chain <hako@ultrarare.space> | 2022-09-25 08:03:02 +0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-10-02 15:23:07 +0300 |
commit | 5bd048debf2aca40e353956c9e54d3a267ec7eb2 (patch) | |
tree | beae08923a12e9c50a16ea739bed091f7a47ca36 /gnu | |
parent | f44ba4a1ad9a1c16cb6a90faf690c6c9b0b919d6 (diff) | |
download | guix-5bd048debf2aca40e353956c9e54d3a267ec7eb2.tar.gz |
gnu: Add go-1.19.
* gnu/packages/golang (go-1.19,go-std-1.19): New variables. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 698b4600ae..4a4c706509 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -857,6 +857,33 @@ in the style of communicating sequential processes (@dfn{CSP}).") (base32 "1s2xwgd3mfbjdf7ls9gyj7n1lbqc4276qkr3znyq9694isj1ak20")))))) +(define-public go-1.19 + (package + (inherit go-1.18) + (name "go") + (version "1.19.1") + (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 + "1gah4zhbkgbwrrryfmzdv2qwi1rgxk10q2r3hnlcb1dybf9c1i1w")))) + (arguments + (substitute-keyword-arguments (package-arguments go-1.18) + ((#:phases phases) + #~(modify-phases #$phases + (replace 'install-doc-files + (lambda _ + (for-each (lambda (file) + (install-file file (string-append + #$output "/share/doc/go"))) + '("CONTRIBUTING.md" "PATENTS" "README.md" + "SECURITY.md")))))))))) + (define-public go go-1.17) (define make-go-std @@ -897,6 +924,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (define-public go-std-1.16 (make-go-std go-1.16)) (define-public go-std-1.17 (make-go-std go-1.17)) (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-0xacab-org-leap-shapeshifter (let ((commit "0aa6226582efb8e563540ec1d3c5cfcd19200474") |