Telling hydra to build the cross-mingw32

svn path=/nixpkgs/trunk/; revision=21632

+15
+15
pkgs/top-level/release-cross.nix
··· 121 121 }; 122 122 in { 123 123 crossUltraSparcLinux = mapTestOnCross crossSystem basic; 124 + }) // ( 125 + 126 + /* Test some cross builds on mingw32 */ 127 + let 128 + crossSystem = { 129 + config = "i686-pc-mingw32"; 130 + arch = "x86"; 131 + libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain 132 + platform = {}; 133 + }; 134 + in { 135 + crossMingw32 = mapTestOnCross crossSystem { 136 + wxGTK.hostDrv = nativePlatforms; 137 + gccCrossStageFinal = nativePlatforms; 138 + }; 124 139 })