summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorAdam C. Stephens <2071575+adamcstephens@users.noreply.github.com>2023-11-17 15:47:26 -0500
committerGitHub <noreply@github.com>2023-11-17 15:47:26 -0500
commit4b8d7d814e63fc5f918e591604f240f9fae5618b (patch)
treeb0ca5ea7e1872f2e11becb3cbf1dd9b69449dbd3 /pkgs/applications/audio
parent82ab4ebbd9266ba21e729458169b00d9985b7fde (diff)
parentecbaf12b43f33349b59337b632dcfbfb17a8310c (diff)
Merge pull request #265556 from adamcstephens/slimserver/fix
slimserver: fix broken package
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/squeezelite/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/audio/squeezelite/default.nix b/pkgs/applications/audio/squeezelite/default.nix
index da126de3fc436..0f3b8be11c08b 100644
--- a/pkgs/applications/audio/squeezelite/default.nix
+++ b/pkgs/applications/audio/squeezelite/default.nix
@@ -22,6 +22,7 @@
 , openssl
 , portaudioSupport ? stdenv.isDarwin
 , portaudio
+, slimserver
 , AudioToolbox
 , AudioUnit
 , Carbon
@@ -95,7 +96,10 @@ stdenv.mkDerivation {
     runHook postInstall
   '';
 
-  passthru.updateScript = ./update.sh;
+  passthru = {
+    inherit (slimserver) tests;
+    updateScript = ./update.sh;
+  };
 
   meta = with lib; {
     description = "Lightweight headless squeezebox client emulator";