From 371aadf3f98124e1c8cd830e30a313290f062acf Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 13 Nov 2024 22:19:47 -0500 Subject: [PATCH] ncspot: use apple-sdk_11 Fixes a build failure on x86_64-darwin --- pkgs/by-name/nc/ncspot/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/nc/ncspot/package.nix b/pkgs/by-name/nc/ncspot/package.nix index 46d346176116..9a3383f28775 100644 --- a/pkgs/by-name/nc/ncspot/package.nix +++ b/pkgs/by-name/nc/ncspot/package.nix @@ -2,6 +2,7 @@ lib, stdenv, alsa-lib, + apple-sdk_11, config, dbus, fetchFromGitHub, @@ -49,6 +50,7 @@ rustPlatform.buildRustPackage rec { buildInputs = [ ncurses ] + ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11 ++ lib.optional stdenv.hostPlatform.isLinux openssl ++ lib.optional (withALSA || withRodio) alsa-lib ++ lib.optional withClipboard libxcb