diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index 31ce31a6759..ad868531598 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;