Merge pull request #95581 from zowoq/cargo-update
cargo-update: fix darwin build
This commit is contained in:
commit
36b2372314
@ -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";
|
||||
|
@ -9434,7 +9434,9 @@ in
|
||||
};
|
||||
cargo-tarpaulin = callPackage ../development/tools/analysis/cargo-tarpaulin { };
|
||||
cargo-tree = callPackage ../tools/package-management/cargo-tree { };
|
||||
cargo-update = callPackage ../tools/package-management/cargo-update { };
|
||||
cargo-update = callPackage ../tools/package-management/cargo-update {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
cargo-asm = callPackage ../development/tools/rust/cargo-asm {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
|
Loading…
Reference in New Issue
Block a user