1 { lib, rustPlatform, fetchCrate, stdenv, darwin }:
3 rustPlatform.buildRustPackage rec {
9 hash = "sha256-kU2SmD51enAyRzzpPJunMKloKS1m7zwEqk2kMX94s7U=";
12 cargoHash = "sha256-tWMiAb50znyZS77Qcp5dUjPr7qnODjiEFunIyDOde8s=";
14 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk_11_0.frameworks; [
21 description = "Graph the number of crates that depend on your crate over time";
22 mainProgram = "cargo-tally";
23 homepage = "https://github.com/dtolnay/cargo-tally";
24 changelog = "https://github.com/dtolnay/cargo-tally/releases/tag/${version}";
25 license = with licenses; [ asl20 /* or */ mit ];
26 maintainers = with maintainers; [ figsoda matthiasbeyer ];