1
1
mirror of https://github.com/wez/wezterm.git synced 2024-08-17 02:00:25 +03:00

Attempt to fix mac build

This commit is contained in:
Hilmar Wiegand 2024-01-17 16:22:27 +01:00 committed by Wez Furlong
parent aaed546947
commit ba29aad0d3

View File

@ -82,13 +82,15 @@
xorg.xcbutilkeysyms
xorg.xcbutilwm # contains xcb-ewmh among others
]
++ lib.optionals stdenv.isDarwin [
Cocoa
CoreGraphics
Foundation
libiconv
UserNotifications
];
++ lib.optionals stdenv.isDarwin (
(with pkgs.darwin.apple_sdk.frameworks; [
Cocoa
CoreGraphics
Foundation
UserNotifications
])
++ [pkgs.libiconv]
);
libPath = lib.makeLibraryPath (with pkgs; [libGL vulkan-loader]);