diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index 79e6975ea932..0845d73175cc 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -136,4 +136,21 @@ in { windows.wxMSW.hostDrv = nativePlatforms; gccCrossStageFinal = nativePlatforms; }; +}) // ( + +/* GNU aka. GNU/Hurd. */ +let + crossSystem = { + config = "i586-pc-gnu"; + bigEndian = false; + arch = "i586"; + float = "hard"; + withTLS = true; + platform = pkgs.platforms.pc; + libc = "glibc"; + }; +in { + crossGNU = mapTestOnCross crossSystem { + gccCrossStageFinal = nativePlatforms; + }; })