From 39c14792ab54be0b53db0dfc4aadc1c2c103e142 Mon Sep 17 00:00:00 2001 From: Dan Sully Date: Sun, 13 Apr 2025 09:08:00 -0700 Subject: [PATCH] cargo-clone: add zlib to build inputs --- pkgs/development/tools/rust/cargo-clone/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/rust/cargo-clone/default.nix b/pkgs/development/tools/rust/cargo-clone/default.nix index 1aad2fdf19b9..73eae241f3fd 100644 --- a/pkgs/development/tools/rust/cargo-clone/default.nix +++ b/pkgs/development/tools/rust/cargo-clone/default.nix @@ -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