wezterm: use apple_sdk_11_0
This commit is contained in:
parent
87de89e23b
commit
08ccdcbc9c
2 changed files with 4 additions and 4 deletions
|
@ -22,6 +22,7 @@
|
|||
, Cocoa
|
||||
, Foundation
|
||||
, libiconv
|
||||
, UserNotifications
|
||||
, nixosTests
|
||||
, runCommand
|
||||
}:
|
||||
|
@ -71,6 +72,7 @@ rustPlatform.buildRustPackage rec {
|
|||
CoreGraphics
|
||||
Foundation
|
||||
libiconv
|
||||
UserNotifications
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
|
@ -119,7 +121,5 @@ rustPlatform.buildRustPackage rec {
|
|||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
platforms = platforms.unix;
|
||||
# Fails on missing UserNotifications framework while linking
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1788,8 +1788,8 @@ with pkgs;
|
|||
|
||||
wayst = callPackage ../applications/terminal-emulators/wayst { };
|
||||
|
||||
wezterm = callPackage ../applications/terminal-emulators/wezterm {
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation;
|
||||
wezterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/wezterm {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Cocoa CoreGraphics Foundation UserNotifications;
|
||||
};
|
||||
|
||||
x3270 = callPackage ../applications/terminal-emulators/x3270 { };
|
||||
|
|
Loading…
Reference in a new issue