dockerTools: Pin go to 1.9

This is the Go version that Docker currently uses:
https://github.com/moby/moby/pull/35739

Fixes #35505
This commit is contained in:
Sarah Brofeldt
2018-02-25 18:11:03 +01:00
parent 538913cb90
commit be5090fa52
+2 -1
View File
@@ -121,7 +121,8 @@ with pkgs;
dieHook = makeSetupHook {} ../build-support/setup-hooks/die.sh;
dockerTools = callPackage ../build-support/docker { };
# go 1.9 pin until https://github.com/moby/moby/pull/35739
dockerTools = callPackage ../build-support/docker { go = go_1_9; };
docker_compose = pythonPackages.docker_compose;