about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/audio/pulseaudio-dlna/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/audio/pulseaudio-dlna/default.nix b/pkgs/applications/audio/pulseaudio-dlna/default.nix
index 98803b32ec9fa..384718f1db541 100644
--- a/pkgs/applications/audio/pulseaudio-dlna/default.nix
+++ b/pkgs/applications/audio/pulseaudio-dlna/default.nix
@@ -13,6 +13,7 @@
 , sox
 , vorbisSupport ? true
 , vorbis-tools
+, pulseaudio
 }:
 
 python3Packages.buildPythonApplication {
@@ -54,6 +55,11 @@ python3Packages.buildPythonApplication {
   ++ lib.optional soxSupport sox
   ++ lib.optional vorbisSupport vorbis-tools;
 
+  # pulseaudio-dlna shells out to pactl to configure sinks and sources.
+  # As pactl might not be in $PATH, add --suffix it (so pactl configured by the
+  # user get priority)
+  makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ pulseaudio ]}" ];
+
   # upstream has no tests
   checkPhase = ''
     $out/bin/pulseaudio-dlna --help > /dev/null