haskell.nix/overlays/wine.nix
2021-06-15 19:50:45 +12:00

17 lines
613 B
Nix

# fix wine at 3.0.2; the 4.x branch breaks windows cross compilation.
# this will inevitably replace *any* wine version. Thus this might not
# really be what we ultimately want.
final: prev:
{
winePackages = prev.winePackages // {
minimal = prev.winePackages.minimal.overrideAttrs (oldAttrs: {
name = "wine-3.21";
version = "3.21";
src = prev.fetchurl {
url = "https://dl.winehq.org/wine/source/3.x/wine-3.21.tar.xz";
sha256 = "1h70wb7kysbzv36i3fblyiihvalwhy6sj4s2a8nf21nz2mhc0k58"; };
patches = [];
});
};
}