cross stdenv: Make depsBuildBuild overrideable by config too.

This commit is contained in:
John Ericson 2018-03-19 16:25:54 -04:00 committed by John Ericson
parent ba96a902ad
commit 45e253cacb

View File

@ -10,9 +10,15 @@ let
config = builtins.removeAttrs config [ "replaceStdenv" ]; config = builtins.removeAttrs config [ "replaceStdenv" ];
}; };
in bootStages ++ [ in lib.init bootStages ++ [
# Build Packages # Regular native packages
(somePrevStage: lib.last bootStages somePrevStage // {
# It's OK to change the built-time dependencies
allowCustomOverrides = true;
})
# Build tool Packages
(vanillaPackages: { (vanillaPackages: {
inherit config overlays; inherit config overlays;
selfBuild = false; selfBuild = false;