haskell.nix/config.nix
2020-07-21 10:00:26 +08:00

13 lines
319 B
Nix

{
# allow building for windows
allowUnsupportedSystem = true;
# we want the 64bit wine version
# See overlays/wine.nix as well!
wine.build = "wine64";
wine.release = "stable";
# This is marked insecure on 20.03, but many packages still depend on it
permittedInsecurePackages = [ "openssl-1.0.2u" ];
}