about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorarcnmx2023-04-03 09:20:28 -0700
committerarcnmx2023-04-03 09:20:28 -0700
commit4da422e269c3af48f0213689da26ac14e5f2c23d (patch)
tree6883f89c499902549b08c9648416c6702e72d40f /pkgs
parente835abc046f5b6404523bf12021f0903d8edd2c1 (diff)
scream: fix dependencies for `jackSupport`
fixes #224467
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/scream/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/scream/default.nix b/pkgs/applications/audio/scream/default.nix
index 26e2b8e79f8b..735faba8f05b 100644
--- a/pkgs/applications/audio/scream/default.nix
+++ b/pkgs/applications/audio/scream/default.nix
@@ -1,7 +1,7 @@
 { stdenv, lib, config, fetchFromGitHub, cmake, pkg-config
 , alsaSupport ? stdenv.isLinux, alsa-lib
 , pulseSupport ? config.pulseaudio or stdenv.isLinux, libpulseaudio
-, jackSupport ? false, libjack2
+, jackSupport ? false, libjack2, soxr
 }:
 
 stdenv.mkDerivation rec {
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = lib.optional pulseSupport libpulseaudio
-    ++ lib.optional jackSupport libjack2
+    ++ lib.optionals jackSupport [ libjack2 soxr ]
     ++ lib.optional alsaSupport alsa-lib;
   nativeBuildInputs = [ cmake pkg-config ];