zls: fix build on Darwin

This commit is contained in:
Aaron Jheng 2024-11-21 09:00:21 +08:00
parent 68b1892ad6
commit b3082cbeb6
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -3,6 +3,7 @@
, fetchFromGitHub
, zig_0_13
, callPackage
, apple-sdk_11,
}:
stdenv.mkDerivation (finalAttrs: {
@ -23,6 +24,8 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ zig_0_13.hook ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ];
postPatch = ''
ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p
'';