3
0
Fork 0
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:
Lluís Batlle i Rossell 2013-01-29 23:39:27 +01:00
parent ea6b1d808c
commit be88539d84

View file

@ -241,7 +241,7 @@ rec {
extraPath = [ stdenvLinuxBoot3Pkgs.xz ];
overrides = pkgs: {
inherit (stdenvLinuxBoot1Pkgs) perl;
inherit (stdenvLinuxBoot3Pkgs) gettext gnum4 xz gmp;
inherit (stdenvLinuxBoot3Pkgs) gettext gnum4 gmp;
};
inherit fetchurl;
};