stdenv-darwin: add parent attribute to bootstrap
This makes it far easier than before to hit/test early stages of the stdenv bootstrap.
This commit is contained in:
parent
de9634bba3
commit
edaf46fb64
|
@ -95,7 +95,7 @@ in rec {
|
||||||
stdenvSandboxProfile = binShClosure + libSystemProfile;
|
stdenvSandboxProfile = binShClosure + libSystemProfile;
|
||||||
extraSandboxProfile = binShClosure + libSystemProfile;
|
extraSandboxProfile = binShClosure + libSystemProfile;
|
||||||
|
|
||||||
extraAttrs = { inherit platform; };
|
extraAttrs = { inherit platform; parent = last; };
|
||||||
overrides = pkgs: (overrides pkgs) // { fetchurl = thisStdenv.fetchurlBoot; };
|
overrides = pkgs: (overrides pkgs) // { fetchurl = thisStdenv.fetchurlBoot; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -290,6 +290,7 @@ in rec {
|
||||||
inherit platform bootstrapTools;
|
inherit platform bootstrapTools;
|
||||||
libc = pkgs.darwin.Libsystem;
|
libc = pkgs.darwin.Libsystem;
|
||||||
shellPackage = pkgs.bash;
|
shellPackage = pkgs.bash;
|
||||||
|
parent = stage4;
|
||||||
};
|
};
|
||||||
|
|
||||||
allowedRequisites = (with pkgs; [
|
allowedRequisites = (with pkgs; [
|
||||||
|
|
Loading…
Reference in New Issue