diff options
author | Sarah Morgensen <iskarian@mgsn.dev> | 2021-09-19 22:20:51 -0700 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-24 16:32:25 -0500 |
commit | 717be95339c953f53a22b9d98378c76025263737 (patch) | |
tree | d1d6896add6859efa39270eb29609b276572931c /gnu/packages/docker.scm | |
parent | d6121d7dd6998118de2c9327291cc942fff54e31 (diff) | |
download | guix-717be95339c953f53a22b9d98378c76025263737.tar.gz |
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 <leo@famulari.name>
Diffstat (limited to 'gnu/packages/docker.scm')
-rw-r--r-- | gnu/packages/docker.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index cdf62f5e9a..d012ed43c6 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm @@ -585,7 +585,7 @@ built-in registry server of Docker.") ("xz" ,xz))) (native-inputs (list eudev ; TODO: Should be propagated by lvm2 (.pc -> .pc) - go gotestsum pkg-config)) + go-1.14 gotestsum pkg-config)) (synopsis "Docker container component library, and daemon") (description "This package provides a framework to assemble specialized container systems. It includes components for orchestration, image |