trying to patch yabridge
This commit is contained in:
parent
80598a1ff1
commit
8f34589f02
5 changed files with 12 additions and 11 deletions
|
@ -56,6 +56,15 @@
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(final: prev: {
|
||||||
|
wineWowPackages.stagingFull = pkgs-stable.wineWowPackages.stagingFull.overrideAttrs (old: {
|
||||||
|
patches = [ ../../patches/wine-6006.patch ];
|
||||||
|
waylandSupport = true;
|
||||||
|
fontconfigSupport = true;
|
||||||
|
vulkanSupport = true;
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
# adds newer bitwig version package. i'm sure this is a hack, but it works.
|
# adds newer bitwig version package. i'm sure this is a hack, but it works.
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
bitwig-studio5-3 = pkgs-local.bitwig-studio.bitwig-bubblewrap.override {
|
bitwig-studio5-3 = pkgs-local.bitwig-studio.bitwig-bubblewrap.override {
|
||||||
|
|
|
@ -10,14 +10,14 @@ final: prev: {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# Hard code bitbridge & runtime dependencies
|
# Hard code bitbridge & runtime dependencies
|
||||||
(prev.replaceVars ./hardcode-dependencies.patch {
|
(prev.replaceVars ../patches/hardcode-dependencies.patch {
|
||||||
libdbus = prev.pkgs.dbus.lib;
|
libdbus = prev.pkgs.dbus.lib;
|
||||||
libxcb32 = prev.pkgsi686Linux.xorg.libxcb;
|
libxcb32 = prev.pkgsi686Linux.xorg.libxcb;
|
||||||
# inherit prev.wine;
|
wine = prev.wine;
|
||||||
})
|
})
|
||||||
|
|
||||||
# Patch the chainloader to search for libyabridge through NIX_PROFILES
|
# 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: {
|
yabridgectl = prev.yabridge.overrideAttrs (old: {
|
||||||
cargoHash = "";
|
cargoHash = "";
|
||||||
});
|
});
|
||||||
|
|
||||||
wineWowPackages.stagingFull = prev.pkgs-stable.wineWowPackages.stagingFull.overrideAttrs
|
|
||||||
(old: {
|
|
||||||
patches = [ ./wine-6006.patch ];
|
|
||||||
waylandSupport = true;
|
|
||||||
fontconfigSupport = true;
|
|
||||||
vulkanSupport = true;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue