Skip to content

Commit

Permalink
release-cross: Do a recursive union to make sure we don't loose tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ericson2314 committed May 18, 2017
1 parent 2601a80 commit df91297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/top-level/release-cross.nix
Expand Up @@ -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;
Expand All @@ -33,7 +33,7 @@ let
patch = nativePlatforms;
};

windowsCommon = gnuCommon // {
windowsCommon = lib.recursiveUpdate gnuCommon {
boehmgc = nativePlatforms;
guile_1_8 = nativePlatforms;
libffi = nativePlatforms;
Expand Down

0 comments on commit df91297

Please sign in to comment.