nixpkgs/pkgs/development/tools/rust/cargo-inspect/default.nix

25 lines
687 B
Nix
Raw Normal View History

{ stdenv, lib, rustPlatform, fetchFromGitHub, Security }:
2019-06-22 21:33:19 +01:00
rustPlatform.buildRustPackage rec {
pname = "cargo-inspect";
2020-07-11 17:26:40 +01:00
version = "0.10.3";
2019-06-22 21:33:19 +01:00
src = fetchFromGitHub {
owner = "mre";
repo = pname;
rev = version;
2020-07-11 17:26:40 +01:00
sha256 = "026vc8d0jkc1d7dlp3ldmwks7svpvqzl0k5niri8a12cl5w5b9hj";
2019-06-22 21:33:19 +01:00
};
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-07-11 17:26:40 +01:00
cargoSha256 = "1ryi5qi1zz2yljyj4rn84q9zkzafc9w4nw3zc01hlzpnb1sjw5sw";
2019-06-22 21:33:19 +01:00
meta = with lib; {
description = "See what Rust is doing behind the curtains";
homepage = "https://github.com/mre/cargo-inspect";
2019-06-22 21:33:19 +01:00
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ minijackson ];
};
}