From 6a0e029a2f6e85fb58eef595e88099174fc46c93 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 12 May 2022 22:07:24 +0530 Subject: [PATCH] feat: add Darwin dependencies to Nix --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index e1346e0..892fadb 100644 --- a/shell.nix +++ b/shell.nix @@ -11,5 +11,6 @@ mkShell { })) xorg.libxcb python39 - ]; + ] ++ pkgs.lib.optionals stdenv.isDarwin + [ pkgs.darwin.apple_sdk.frameworks.AppKit ]; }