Merge pull request #95581 from zowoq/cargo-update
cargo-update: fix darwin build
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user