diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index ab0310f7309..d4daf2652c3 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -151,10 +151,16 @@ let libc = "glibc"; }; in { - crossGNU = mapTestOnCross crossSystem ({ - gccCrossStageFinal = nativePlatforms; - hurdCross = nativePlatforms; - } - // - basic); + crossGNU = mapTestOnCross crossSystem { + gccCrossStageFinal = nativePlatforms; + hurdCross = nativePlatforms; + + coreutils_real.hostDrv = nativePlatforms; + ed.hostDrv = nativePlatforms; + grub2.hostDrv = nativePlatforms; + inetutils.hostDrv = nativePlatforms; + nixUnstable.hostDrv = nativePlatforms; + patch.hostDrv = nativePlatforms; + zile.hostDrv = nativePlatforms; + }; })