Merge pull request #205239 from figsoda/cargo-tally
cargo-tally: 1.0.17 -> 1.0.18
This commit is contained in:
commit
92c99f088c
2 changed files with 7 additions and 9 deletions
|
@ -1,21 +1,21 @@
|
||||||
{ lib, rustPlatform, fetchCrate, stdenv, DiskArbitration, Foundation, IOKit }:
|
{ lib, rustPlatform, fetchCrate, stdenv, darwin }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-tally";
|
pname = "cargo-tally";
|
||||||
version = "1.0.17";
|
version = "1.0.18";
|
||||||
|
|
||||||
src = fetchCrate {
|
src = fetchCrate {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-vtVE7BITzYP9vhSj7HfDm0Mar2bRPmeW1/mE977vvrA=";
|
sha256 = "sha256-BlWPdZb85XaTGV6ZE3XRVKHJyXimfrezhRyqJVmCFMY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-VHlnRk5EXZjf+EW/clDOFA+ohh9SqJiRvq1xQcP0Wrk=";
|
cargoSha256 = "sha256-1qtlsItLP8MdxebgktzTr3R4Kq+PBIAiHGaikbQ796E=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk_11_0.frameworks; [
|
||||||
DiskArbitration
|
DiskArbitration
|
||||||
Foundation
|
Foundation
|
||||||
IOKit
|
IOKit
|
||||||
];
|
]);
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Graph the number of crates that depend on your crate over time";
|
description = "Graph the number of crates that depend on your crate over time";
|
||||||
|
|
|
@ -15374,9 +15374,7 @@ with pkgs;
|
||||||
};
|
};
|
||||||
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-tally = callPackage ../development/tools/rust/cargo-tally {
|
cargo-tally = callPackage ../development/tools/rust/cargo-tally { };
|
||||||
inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation IOKit;
|
|
||||||
};
|
|
||||||
cargo-temp = callPackage ../development/tools/rust/cargo-temp { };
|
cargo-temp = callPackage ../development/tools/rust/cargo-temp { };
|
||||||
cargo-udeps = callPackage ../development/tools/rust/cargo-udeps {
|
cargo-udeps = callPackage ../development/tools/rust/cargo-udeps {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
|
inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
|
||||||
|
|
Loading…
Reference in a new issue