cargo-clone: add zlib to build inputs

This commit is contained in:
Dan Sully
2025-04-13 09:13:59 -07:00
parent cf66f626fd
commit 39c14792ab
@@ -4,6 +4,7 @@
fetchFromGitHub,
pkg-config,
openssl,
zlib,
stdenv,
CoreServices,
Security,
@@ -27,7 +28,10 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ pkg-config ];
buildInputs =
[ openssl ]
[
openssl
zlib
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
CoreServices
Security