chore: add AppKit framework for macOS

This commit is contained in:
Yi-Jyun Pan 2024-11-01 15:00:45 +08:00
parent c929beaf6c
commit 6849632abe
No known key found for this signature in database

View File

@ -8,7 +8,9 @@ in
env.GREET = "devenv";
# https://devenv.sh/packages/
packages = [ pkgs.git ];
packages = [ pkgs.git ] ++ lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk; [
frameworks.AppKit
]);
# https://devenv.sh/languages/
languages.javascript.enable = true;