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