Merge pull request #127352 from happysalada/cargo-udeps_update
cargo-udeps: 0.1.21 -> 0.1.22
This commit is contained in:
commit
b2db3cb6f1
@ -1,22 +1,23 @@
|
|||||||
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, CoreServices, Security, libiconv }:
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, CoreServices, Security, libiconv, SystemConfiguration }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-udeps";
|
pname = "cargo-udeps";
|
||||||
version = "0.1.21";
|
version = "0.1.22";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "est31";
|
owner = "est31";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-Voei7j3WRDu70NkcJvjqPJ4ikOUupOhvFNEHHRyF6/Q=";
|
sha256 = "sha256-z92q0uwL832Ph7sTpWpaa8e9Xrik9wnjQ7LBy/hY8KE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-zMya7bEehNKIfwQtJ252sflg06P4Ra8/lgBjn4UUqRg=";
|
cargoSha256 = "sha256-4HguNyPIjpFqa80dDVFgXDK7pHOuFJdpFNxLARXxT2g=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
# TODO figure out how to use provided curl instead of compiling curl from curl-sys
|
||||||
buildInputs = [ openssl ]
|
buildInputs = [ openssl ]
|
||||||
++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv ];
|
++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv SystemConfiguration ];
|
||||||
|
|
||||||
# Requires network access
|
# Requires network access
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -11906,7 +11906,7 @@ in
|
|||||||
cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { };
|
cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { };
|
||||||
cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme {};
|
cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme {};
|
||||||
cargo-udeps = callPackage ../development/tools/rust/cargo-udeps {
|
cargo-udeps = callPackage ../development/tools/rust/cargo-udeps {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices Security;
|
inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
|
||||||
};
|
};
|
||||||
cargo-valgrind = callPackage ../development/tools/rust/cargo-valgrind { };
|
cargo-valgrind = callPackage ../development/tools/rust/cargo-valgrind { };
|
||||||
cargo-watch = callPackage ../development/tools/rust/cargo-watch {
|
cargo-watch = callPackage ../development/tools/rust/cargo-watch {
|
||||||
|
Loading…
Reference in New Issue
Block a user