forked from mirrors/nixpkgs
stdenv bootstrap: removing xz override from stdenvLinuxBoot4
Due to xz being override in the last stdenv and also in the previous, the nixpkgs xz ended up being built by bootstrap-tools, and thus depending on it through libgcc_so.so.1. That ends up making 'nix' with a runtime dependency on bootstrap-tools.
This commit is contained in:
parent
ea6b1d808c
commit
be88539d84
|
@ -241,7 +241,7 @@ rec {
|
||||||
extraPath = [ stdenvLinuxBoot3Pkgs.xz ];
|
extraPath = [ stdenvLinuxBoot3Pkgs.xz ];
|
||||||
overrides = pkgs: {
|
overrides = pkgs: {
|
||||||
inherit (stdenvLinuxBoot1Pkgs) perl;
|
inherit (stdenvLinuxBoot1Pkgs) perl;
|
||||||
inherit (stdenvLinuxBoot3Pkgs) gettext gnum4 xz gmp;
|
inherit (stdenvLinuxBoot3Pkgs) gettext gnum4 gmp;
|
||||||
};
|
};
|
||||||
inherit fetchurl;
|
inherit fetchurl;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue