Skip to content

Commit 71a6a00

Browse files
committed
chore(nix): add AppKit to buildInputs on Darwin
Signed-off-by: yvt <i@yvt.jp>
1 parent 08bc2d5 commit 71a6a00

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

etc/shell.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ clangStdenv.mkDerivation rec {
2020
# Build utilities
2121
cmake dbus gcc git pkgconfig which llvm autoconf213 perl yasm m4
2222
(python3.withPackages (ps: with ps; [virtualenv pip dbus]))
23-
];
23+
] ++ (lib.optionals stdenv.isDarwin [
24+
darwin.apple_sdk.frameworks.AppKit
25+
]);
2426

2527
LIBCLANG_PATH = llvmPackages.clang-unwrapped.lib + "/lib/";
2628

0 commit comments

Comments
 (0)