mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +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" ];
|
||||
};
|
||||
|
||||
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: {
|
||||
inherit config overlays;
|
||||
selfBuild = false;
|
||||
|
Loading…
Reference in New Issue
Block a user