twitch-tui: fix darwin build

This commit is contained in:
Austin Horstman 2023-10-13 15:05:01 -05:00
parent 5bdf6eccd7
commit 59cf1417db
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@
, rustPlatform
, pkg-config
, openssl
, CoreServices
, Security
}:
@ -27,6 +28,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [
CoreServices
Security
];

View File

@ -6977,7 +6977,7 @@ with pkgs;
keymapper = callPackage ../tools/inputmethods/keymapper { };
twitch-tui = callPackage ../applications/networking/instant-messengers/twitch-tui {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (darwin.apple_sdk_11_0.frameworks) Security CoreServices;
};
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { stdenv = gcc10StdenvCompat; };