1 { lib, rustPlatform, fetchCrate, stdenv, darwin }:
3 rustPlatform.buildRustPackage rec {
9 hash = "sha256-LPqoq9iry8nNXphFdmjwepNB1bK8/myOEoT4UM0xF70=";
12 cargoHash = "sha256-FU4NYa2S9x0IXhPtWM0PyOBCGCGHj80QR7DRuDgDYJY=";
14 buildInputs = lib.optionals stdenv.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 ];