Commit 39c14792 authored by Dan Sully's avatar Dan Sully
Browse files

cargo-clone: add zlib to build inputs

parent cf66f626
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