Unverified Commit 01ae5084 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

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

parents 9b3e72a8 39c14792
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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