cargo-clone: add zlib to build inputs (#398401)

This commit is contained in:
Arne Keller
2025-04-14 17:39:21 +02:00
committed by GitHub
@@ -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