delta: add missing zlib dependency on Darwin

This commit is contained in:
Olivér Falvai
2024-12-20 10:40:22 +01:00
parent f0fa98d059
commit 315e82e182
+2 -2
View File
@@ -6,8 +6,8 @@
pkg-config,
oniguruma,
stdenv,
apple-sdk_11,
git,
zlib,
}:
rustPlatform.buildRustPackage rec {
@@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec {
oniguruma
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
apple-sdk_11
zlib
];
nativeCheckInputs = [ git ];