spotifyd: use default SDK on Darwin (14.4)

This commit is contained in:
Randy Eckenrode
2025-10-09 18:23:31 -04:00
parent ec30ce8c65
commit 7cc243d3d5
+1 -3
View File
@@ -3,7 +3,6 @@
stdenv,
config,
alsa-lib,
apple-sdk_11,
cmake,
dbus,
fetchFromGitHub,
@@ -42,8 +41,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
];
buildInputs =
lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]
++ lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
# The `dbus_mpris` feature works on other platforms, but only requires `dbus` on Linux
++ lib.optional (withMpris && stdenv.hostPlatform.isLinux) dbus
++ lib.optional (withALSA || withJack) alsa-lib