diff options
author | yvt <i@yvt.jp> | 2022-09-16 00:33:35 +0900 |
---|---|---|
committer | yvt <i@yvt.jp> | 2022-09-16 00:37:07 +0900 |
commit | 71a6a00d260069d30d07b66aeacc15e9f7c0bf06 (patch) | |
tree | 45d4684cece37249b8bd827895f3ba62367d8e7c /etc | |
parent | 08bc2d53579c9ab85415d4363888881b91df073b (diff) | |
download | servo-71a6a00d260069d30d07b66aeacc15e9f7c0bf06.tar.gz servo-71a6a00d260069d30d07b66aeacc15e9f7c0bf06.zip |
chore(nix): add `AppKit` to `buildInputs` on Darwin
Signed-off-by: yvt <i@yvt.jp>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/shell.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/shell.nix b/etc/shell.nix index a83a02fec7a..5d8a7b99211 100644 --- a/etc/shell.nix +++ b/etc/shell.nix @@ -20,7 +20,9 @@ clangStdenv.mkDerivation rec { # Build utilities cmake dbus gcc git pkgconfig which llvm autoconf213 perl yasm m4 (python3.withPackages (ps: with ps; [virtualenv pip dbus])) - ]; + ] ++ (lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.AppKit + ]); LIBCLANG_PATH = llvmPackages.clang-unwrapped.lib + "/lib/"; |