mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
release-cross: Do a recursive union to make sure we don't loose tests
This commit is contained in:
parent
2601a80639
commit
df91297181
|
@ -17,12 +17,12 @@ let
|
|||
gmp = nativePlatforms;
|
||||
};
|
||||
|
||||
gnuCommon = common // {
|
||||
gnuCommon = lib.recursiveUpdate common {
|
||||
buildPackages.gccCrossStageFinal = nativePlatforms;
|
||||
coreutils = nativePlatforms;
|
||||
};
|
||||
|
||||
linuxCommon = gnuCommon // {
|
||||
linuxCommon = lib.recursiveUpdate gnuCommon {
|
||||
buildPackages.gdbCross = nativePlatforms;
|
||||
|
||||
bison = nativePlatforms;
|
||||
|
@ -33,7 +33,7 @@ let
|
|||
patch = nativePlatforms;
|
||||
};
|
||||
|
||||
windowsCommon = gnuCommon // {
|
||||
windowsCommon = lib.recursiveUpdate gnuCommon {
|
||||
boehmgc = nativePlatforms;
|
||||
guile_1_8 = nativePlatforms;
|
||||
libffi = nativePlatforms;
|
||||
|
|
Loading…
Reference in a new issue