Merge pull request #95581 from zowoq/cargo-update

cargo-update: fix darwin build
This commit is contained in:
Vladyslav M
2020-08-16 18:47:32 +03:00
committed by GitHub
2 changed files with 7 additions and 3 deletions
@@ -7,7 +7,9 @@
, libssh2
, openssl
, pkg-config
, zlib }:
, Security
, zlib
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-update";
@@ -25,7 +27,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libgit2 libssh2 openssl zlib ]
++ stdenv.lib.optional stdenv.isDarwin curl;
++ stdenv.lib.optionals stdenv.isDarwin [ curl Security ];
meta = with stdenv.lib; {
description = "A cargo subcommand for checking and applying updates to installed executables";