Merge pull request #260934 from khaneliman/twitch-tui-darwin

twitch-tui: fix darwin build
This commit is contained in:
Weijia Wang 2023-10-13 23:13:42 +02:00 committed by GitHub
commit 7c0d2f5f24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -6978,7 +6978,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; };