From c49eefdfe2216c13043c3b6ae507ed632fcf945b Mon Sep 17 00:00:00 2001 From: MaxHearnden Date: Thu, 5 Oct 2023 08:46:38 +0100 Subject: [PATCH] shairport-sync: add xxd to the nativeBuildInputs it is run while building shairport-sync and strictdeps means that it is not added to the path in buildInputs --- pkgs/servers/shairport-sync/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/shairport-sync/default.nix b/pkgs/servers/shairport-sync/default.nix index b9b4ff868e0f..1c41729a4bc5 100644 --- a/pkgs/servers/shairport-sync/default.nix +++ b/pkgs/servers/shairport-sync/default.nix @@ -58,6 +58,8 @@ stdenv.mkDerivation rec { # To achieve this, we coerce the output to a string to prevent # mkDerivation's splicing logic from kicking in. "${glib.dev}" + ] ++ optional enableAirplay2 [ + unixtools.xxd ]; makeFlags = [ @@ -83,7 +85,6 @@ stdenv.mkDerivation rec { libgcrypt libuuid ffmpeg - unixtools.xxd ] ++ optional stdenv.isLinux glib;