mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
Merge pull request #35435 from Mic92/go-build
buildGoPackage: disable cache creation
This commit is contained in:
commit
221510cf0f
|
@ -196,6 +196,9 @@ go.stdenv.mkDerivation (
|
|||
find $bin/bin -type f -exec ${removeExpr removeReferences} '{}' + || true
|
||||
'';
|
||||
|
||||
# Disable go cache, which is not reused in nix anyway
|
||||
GOCACHE = "off";
|
||||
|
||||
shellHook = ''
|
||||
d=$(mktemp -d "--suffix=-$name")
|
||||
'' + toString (map (dep: ''
|
||||
|
|
Loading…
Reference in a new issue