mirror of
https://github.com/ilyakooo0/haskell.nix.git
synced 2024-11-10 06:47:48 +03:00
13 lines
319 B
Nix
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" ];
|
|
}
|
|
|