about summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-02-04 12:01:24 +0000
committerGitHub <noreply@github.com>2023-02-04 12:01:24 +0000
commit33919d25f0c873b0c73e2f8d0859fab3bd0d1b26 (patch)
treeeeb42b17cfde205c6135dd45ccea09a72d5f9537 /pkgs/tools/audio
parent68b17279079c4b7b37ce18ecdac33ecf2fd1e037 (diff)
parent199753fafc26559be5375525f45aca02cd245513 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/yabridge/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/tools/audio/yabridge/default.nix b/pkgs/tools/audio/yabridge/default.nix
index 60af9b430a94b..9de97fe52f486 100644
--- a/pkgs/tools/audio/yabridge/default.nix
+++ b/pkgs/tools/audio/yabridge/default.nix
@@ -3,6 +3,7 @@
 , fetchFromGitHub
 , substituteAll
 , pkgsi686Linux
+, fetchpatch
 , dbus
 , meson
 , ninja
@@ -103,6 +104,14 @@ in multiStdenv.mkDerivation rec {
 
     # Patch the chainloader to search for libyabridge through NIX_PROFILES
     ./libyabridge-from-nix-profiles.patch
+
+    # Remove with next yabridge update
+   (fetchpatch {
+      name = "fix-for-wine-8.0.patch";
+      url = "https://github.com/robbert-vdh/yabridge/commit/29acd40a9add635e2cb40ecc54c88d65604a7a2a.patch";
+      sha256 = "sha256-hVxa/FqH7d938Z/VjHdhmYLCLPZoa9C4xKSKRKiVPSU=";
+      includes = [ "meson.build" ];
+    })
   ];
 
   postPatch = ''