about summary refs log tree commit diff
path: root/pkgs/applications/audio/easyeffects/default.nix
diff options
context:
space:
mode:
authorseth <getchoo@tuta.io>2024-06-25 21:04:49 -0400
committerseth <getchoo@tuta.io>2024-06-25 21:04:49 -0400
commitdd8260ecb7902fe0c13dc50c0daa66c399b5ba0a (patch)
tree1070284c5a77c9e13f3e22218ac4fb3bb91cce02 /pkgs/applications/audio/easyeffects/default.nix
parente3b85fd928344945e7bd6f2a6f32d93c07489728 (diff)
easyeffects: override speexdsp in expression
Diffstat (limited to 'pkgs/applications/audio/easyeffects/default.nix')
-rw-r--r--pkgs/applications/audio/easyeffects/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/audio/easyeffects/default.nix b/pkgs/applications/audio/easyeffects/default.nix
index 4730df0464d66..53f7d231b8503 100644
--- a/pkgs/applications/audio/easyeffects/default.nix
+++ b/pkgs/applications/audio/easyeffects/default.nix
@@ -38,6 +38,10 @@
 , zam-plugins
 , zita-convolver
 }:
+let
+  # Fix crashes with speexdsp effects
+  speexdsp' = speexdsp.override { withFftw3 = false; };
+in
 
 stdenv.mkDerivation rec {
   pname = "easyeffects";
@@ -83,7 +87,7 @@ stdenv.mkDerivation rec {
     rnnoise
     rubberband
     soundtouch
-    speexdsp
+    speexdsp'
     tbb
     zita-convolver
   ];