biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-inspect / default.nix
blobdb646ec07c9e3b464994c4c01be67f67992956db
1 { stdenv, lib, rustPlatform, fetchFromGitHub, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-inspect";
5   version = "0.10.3";
7   src = fetchFromGitHub {
8     owner = "mre";
9     repo = pname;
10     rev = version;
11     sha256 = "026vc8d0jkc1d7dlp3ldmwks7svpvqzl0k5niri8a12cl5w5b9hj";
12   };
14   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
16   cargoSha256 = "069i8ydrp1pssnjq7d6mydwr7xh2cmcpzpf8bzd6nfjr6xx1pipr";
18   meta = with lib; {
19     description = "See what Rust is doing behind the curtains";
20     mainProgram = "cargo-inspect";
21     homepage = "https://github.com/mre/cargo-inspect";
22     license = with licenses; [ mit asl20 ];
23     maintainers = with maintainers; [ minijackson matthiasbeyer ];
24   };