diff options
author | Sarah Morgensen <[email protected]> | 2021-09-19 22:20:51 -0700 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2021-12-24 16:32:25 -0500 |
commit | 717be95339c953f53a22b9d98378c76025263737 (patch) | |
tree | d1d6896add6859efa39270eb29609b276572931c /gnu/packages/golang.scm | |
parent | d6121d7dd6998118de2c9327291cc942fff54e31 (diff) |
build-system/go: Use go-1.17 by default.
Build all Go packages with go-1.17 by default. Explicitly specify an
older Go version in packages which cannot build with go-1.17.
* gnu/packages/golang.scm (go): Update from 'go-1.14' to 'go-1.17'.
* gnu/packages/docker.scm (docker)[native-inputs]: Explicitly use 'go-1.14'.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipfs-cmdkit-files)[arguments]:
Explicitly use Go 1.16.
(go-ipfs)[arguments]: Use the default version of Go.
* gnu/packages/syncthing.scm (syncthing)[arguments]: Likewise.
* gnu/packages/admin.scm (runitor)[arguments]: Likewise.
Signed-off-by: Leo Famulari <[email protected]>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index d7770724d2..50d03516cf 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -829,7 +829,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (alist-replace "go" (list go-1.16) (package-native-inputs go-1.16)) (package-native-inputs go-1.16))))) -(define-public go go-1.14) +(define-public go go-1.17) (define-public (make-go-std go) "Return a package which builds the standard library for Go compiler GO." |