Skip to content

Commit 6849632

Browse files
committed
chore: add AppKit framework for macOS
1 parent c929bea commit 6849632

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

devenv.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ in
88
env.GREET = "devenv";
99

1010
# https://devenv.sh/packages/
11-
packages = [ pkgs.git ];
11+
packages = [ pkgs.git ] ++ lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk; [
12+
frameworks.AppKit
13+
]);
1214

1315
# https://devenv.sh/languages/
1416
languages.javascript.enable = true;

0 commit comments

Comments
 (0)