forked from mirrors/nixpkgs
buildGoPackage: disable module-mode
Go 1.13 slightly changed the behavior GO111MODULE=auto [1], which might accidentally cause the go command to build the module, for instance in the checkPhase: [GO111MODULE=auto] activates the module-aware mode of the go command whenever the current working directory contains, or is below a directory containing, a go.mod file — even if the current directory is within GOPATH/src. [1] https://golang.org/doc/go1.13#proxy-vars
This commit is contained in:
parent
868972f294
commit
46abdee40b
|
@ -84,6 +84,8 @@ let
|
||||||
GOHOSTARCH = go.GOHOSTARCH or null;
|
GOHOSTARCH = go.GOHOSTARCH or null;
|
||||||
GOHOSTOS = go.GOHOSTOS or null;
|
GOHOSTOS = go.GOHOSTOS or null;
|
||||||
|
|
||||||
|
GO111MODULE = "off";
|
||||||
|
|
||||||
GOARM = toString (stdenv.lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);
|
GOARM = toString (stdenv.lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);
|
||||||
|
|
||||||
configurePhase = args.configurePhase or ''
|
configurePhase = args.configurePhase or ''
|
||||||
|
|
Loading…
Reference in a new issue