9 lines
254 B
Nix
9 lines
254 B
Nix
|
final: prev: {
|
||
|
wineWowPackages.stagingFull = prev.wineWowPackages.stagingFull.overrideAttrs (old: {
|
||
|
patches = old.patches ++ [ ../patches/wine-6006.patch ];
|
||
|
waylandSupport = true;
|
||
|
fontconfigSupport = true;
|
||
|
vulkanSupport = true;
|
||
|
});
|
||
|
}
|