Commit 7d156f6a authored by AsbjornOlling's avatar AsbjornOlling Committed by Emery Hemingway
Browse files

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
parent a341e62e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {