biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-tally / default.nix
blobd9db7c536990b5b1e446d34e12815157c2322149
1 { lib, rustPlatform, fetchCrate, stdenv, darwin }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-tally";
5   version = "1.0.43";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-LPqoq9iry8nNXphFdmjwepNB1bK8/myOEoT4UM0xF70=";
10   };
12   cargoHash = "sha256-FU4NYa2S9x0IXhPtWM0PyOBCGCGHj80QR7DRuDgDYJY=";
14   buildInputs = lib.optionals stdenv.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   };