2022-12-17 10:02:37 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate, stdenv, darwin }:
|
2021-09-22 15:38:15 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-tally";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "1.0.34";
|
2021-09-22 15:38:15 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-8PlWRWP5ZsbZ3R/yqA9bUScG0w+gk5YLcIOqwWishVM=";
|
2021-09-22 15:38:15 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
cargoHash = "sha256-+Ti8un+y9aNPsz9rUjmTZ6nxVCeQObiZrCYrD6dwr4c=";
|
2021-09-22 15:38:15 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk_11_0.frameworks; [
|
2021-09-22 15:38:15 +00:00
|
|
|
DiskArbitration
|
|
|
|
Foundation
|
|
|
|
IOKit
|
2022-12-17 10:02:37 +00:00
|
|
|
]);
|
2021-09-22 15:38:15 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Graph the number of crates that depend on your crate over time";
|
|
|
|
homepage = "https://github.com/dtolnay/cargo-tally";
|
2023-02-22 10:55:15 +00:00
|
|
|
changelog = "https://github.com/dtolnay/cargo-tally/releases/tag/${version}";
|
2021-09-22 15:38:15 +00:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2023-08-22 20:05:09 +00:00
|
|
|
maintainers = with maintainers; [ figsoda matthiasbeyer ];
|
2021-09-22 15:38:15 +00:00
|
|
|
};
|
|
|
|
}
|