evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-tally / package.nix
blob92127031c8a594ea9e7b52804db8b184c8f8911c
1 { lib, rustPlatform, fetchCrate, stdenv, darwin }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-tally";
5   version = "1.0.50";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-kU2SmD51enAyRzzpPJunMKloKS1m7zwEqk2kMX94s7U=";
10   };
12   cargoHash = "sha256-tWMiAb50znyZS77Qcp5dUjPr7qnODjiEFunIyDOde8s=";
14   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk_11_0.frameworks; [
15     DiskArbitration
16     Foundation
17     IOKit
18   ]);
20   meta = with lib; {
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 ];
27   };