1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-21 18:12:23 +03:00

nix/flake.nix: fix x86_64-darwin build

The default SDK errors missing UserNotifications on x86_64-darwin.

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
This commit is contained in:
Sirio Balmelli 2024-10-21 11:42:40 +02:00 committed by Wez Furlong
parent 6fc35e7dcb
commit 255b9e0783

View File

@ -73,7 +73,7 @@
xorg.xcbutilwm # contains xcb-ewmh among others
]
++ lib.optionals stdenv.isDarwin (
(with pkgs.darwin.apple_sdk.frameworks; [
(with pkgs.darwin.apple_sdk_12_3.frameworks; [
Cocoa
CoreGraphics
Foundation