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