buildNimPackage: add windows to platforms

since fixing the nixbuild patch to un-break cross compilation for
windows, it is now possible to use buildNimPackage to build windows binaries

authored by

AsbjornOlling and committed by
Emery Hemingway
7d156f6a a341e62e

+1 -1
+1 -1
pkgs/development/compilers/nim/default.nix
··· 303 303 meta = nim'.meta // { 304 304 description = nim'.meta.description 305 305 + " (${targetPlatformConfig} wrapper)"; 306 - platforms = with lib.platforms; unix ++ genode; 306 + platforms = with lib.platforms; unix ++ genode ++ windows; 307 307 }; 308 308 }); 309 309 in {