From 255b9e0783b9c70d7094f2fdcf00a4b0c3db3c72 Mon Sep 17 00:00:00 2001 From: Sirio Balmelli Date: Mon, 21 Oct 2024 11:42:40 +0200 Subject: [PATCH] nix/flake.nix: fix x86_64-darwin build The default SDK errors missing UserNotifications on x86_64-darwin. Signed-off-by: Sirio Balmelli --- nix/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/flake.nix b/nix/flake.nix index 824b11110..5e925cad8 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -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