Merge #55420: buildEnv, substituteAll: disable binary cache
... into staging.
This commit is contained in:
commit
2adf954e84
@ -196,4 +196,5 @@ in stdenv.mkDerivation {
|
|||||||
${if isMultiBuild then extraBuildCommandsMulti else ""}
|
${if isMultiBuild then extraBuildCommandsMulti else ""}
|
||||||
'';
|
'';
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
allowSubstitutes = false;
|
||||||
}
|
}
|
||||||
|
@ -70,6 +70,7 @@ runCommand name
|
|||||||
priority = drv.meta.priority or 5;
|
priority = drv.meta.priority or 5;
|
||||||
}) paths);
|
}) paths);
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
allowSubstitutes = false;
|
||||||
# XXX: The size is somewhat arbitrary
|
# XXX: The size is somewhat arbitrary
|
||||||
passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null;
|
passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null;
|
||||||
}
|
}
|
||||||
|
@ -22,4 +22,5 @@ stdenv.mkDerivation ({
|
|||||||
eval "$postInstall"
|
eval "$postInstall"
|
||||||
'';
|
'';
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
allowSubstitutes = false;
|
||||||
} // args)
|
} // args)
|
||||||
|
@ -8,4 +8,5 @@ stdenvNoCC.mkDerivation ({
|
|||||||
builder = ./substitute-all.sh;
|
builder = ./substitute-all.sh;
|
||||||
inherit (args) src;
|
inherit (args) src;
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
allowSubstitutes = false;
|
||||||
} // args)
|
} // args)
|
||||||
|
@ -4,6 +4,7 @@ runCommand "fc-cache"
|
|||||||
rec {
|
rec {
|
||||||
buildInputs = [ fontconfig.bin ];
|
buildInputs = [ fontconfig.bin ];
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
allowSubstitutes = false;
|
||||||
passAsFile = [ "fontDirs" ];
|
passAsFile = [ "fontDirs" ];
|
||||||
fontDirs = ''
|
fontDirs = ''
|
||||||
<!-- Font directories -->
|
<!-- Font directories -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user