From 102eabd1dfb4a11d9796dc1944752cfca787e23e Mon Sep 17 00:00:00 2001 From: Lorenz Brun Date: Sun, 13 Mar 2022 01:22:31 +0100 Subject: [PATCH] jamesdsp: backport fix for PipeWire 0.3.44+ Using jamesdsp with PipeWire 0.3.44 and later causes frequent crashes in jamesdsp. This backports the upstream fix. --- pkgs/applications/audio/jamesdsp/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/audio/jamesdsp/default.nix b/pkgs/applications/audio/jamesdsp/default.nix index 16683564b2c7..114fd088004d 100644 --- a/pkgs/applications/audio/jamesdsp/default.nix +++ b/pkgs/applications/audio/jamesdsp/default.nix @@ -27,6 +27,11 @@ mkDerivation rec{ url = "https://github.com/Audio4Linux/JDSP4Linux/commit/003c9e9fc426f83e269aed6e05be3ed55273931a.patch"; hash = "sha256-crll/a7C9pUq9eL5diq8/YgC5bNC6SrdijZEBxZpJ8E="; }) + # compatibility fix for PipeWire 0.3.44+, remove on version bump + (fetchpatch { + url = "https://github.com/Audio4Linux/JDSP4Linux/commit/e04c55735cc20fc3c3ce042c5681ec80f7df3c96.patch"; + hash = "sha256-o6AUtQzugykALSdkM3i3lYqRmzJX3FzmALSi0TrWuRA="; + }) ]; nativeBuildInputs = [ qmake pkg-config ];