summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/top-level/release-cross.nix18
1 files changed, 12 insertions, 6 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index ab0310f7309a..d4daf2652c35 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;
+  };
 })