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
This commit is contained in:
AsbjornOlling 2024-07-09 10:23:05 +02:00 committed by Emery Hemingway
parent a341e62e78
commit 7d156f6a5c

View File

@ -303,7 +303,7 @@ in {
meta = nim'.meta // { meta = nim'.meta // {
description = nim'.meta.description description = nim'.meta.description
+ " (${targetPlatformConfig} wrapper)"; + " (${targetPlatformConfig} wrapper)";
platforms = with lib.platforms; unix ++ genode; platforms = with lib.platforms; unix ++ genode ++ windows;
}; };
}); });
in { in {