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-11 07:28:37 +00:00
committed by Emery Hemingway
parent a341e62e78
commit 7d156f6a5c
+1 -1
View File
@@ -303,7 +303,7 @@ in {
meta = nim'.meta // {
description = nim'.meta.description
+ " (${targetPlatformConfig} wrapper)";
platforms = with lib.platforms; unix ++ genode;
platforms = with lib.platforms; unix ++ genode ++ windows;
};
});
in {