mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
cross stdenv: Make depsBuildBuild overrideable by config too.
This commit is contained in:
parent
ba96a902ad
commit
45e253cacb
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user