summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/release-cross.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2017-05-18 10:41:58 -0400
committerJohn Ericson <Ericson2314@Yahoo.com>2017-05-18 10:41:58 -0400
commitdf91297181d0d62da0d090039af52a44ff70467d (patch)
tree213da839e8e51be32caaada9ce64918886f51f47 /pkgs/top-level/release-cross.nix
parent2601a80639ecee27fdb83ce099c037a348ba7125 (diff)
release-cross: Do a recursive union to make sure we don't loose tests
Diffstat (limited to 'pkgs/top-level/release-cross.nix')
-rw-r--r--pkgs/top-level/release-cross.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index 31ce31a67595..ad868531598e 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -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;