trying to patch yabridge

This commit is contained in:
Matt Nish-Lapidus 2025-06-20 15:55:34 -04:00
parent 80598a1ff1
commit 8f34589f02
5 changed files with 12 additions and 11 deletions

View file

@ -10,14 +10,14 @@ final: prev: {
patches = [
# Hard code bitbridge & runtime dependencies
(prev.replaceVars ./hardcode-dependencies.patch {
(prev.replaceVars ../patches/hardcode-dependencies.patch {
libdbus = prev.pkgs.dbus.lib;
libxcb32 = prev.pkgsi686Linux.xorg.libxcb;
# inherit prev.wine;
wine = prev.wine;
})
# Patch the chainloader to search for libyabridge through NIX_PROFILES
./libyabridge-from-nix-profiles.patch
../patches/libyabridge-from-nix-profiles.patch
];
});
@ -25,12 +25,4 @@ final: prev: {
yabridgectl = prev.yabridge.overrideAttrs (old: {
cargoHash = "";
});
wineWowPackages.stagingFull = prev.pkgs-stable.wineWowPackages.stagingFull.overrideAttrs
(old: {
patches = [ ./wine-6006.patch ];
waylandSupport = true;
fontconfigSupport = true;
vulkanSupport = true;
});
}