cargo-inspect: init at 0.10.1

This commit is contained in:
Minijackson 2019-06-22 22:33:19 +02:00
parent baa75f0c25
commit 2ff8d2ab6d
No known key found for this signature in database
GPG key ID: FEA888C9F5D64F62
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "cargo-inspect";
version = "0.10.1";
src = fetchFromGitHub {
owner = "mre";
repo = pname;
rev = version;
sha256 = "0rjy8jlar939fkl7wi8a6zxsrl4axz2nrhv745ny8x38ii4sfbzr";
};
cargoSha256 = "1pxvcf991w0jfxdissvwal5slrx7vpk3rqkzwk4hxfv0mjiqxsg5";
meta = with lib; {
description = "See what Rust is doing behind the curtains";
homepage = https://github.com/mre/cargo-inspect;
license = with licenses; [ mit asl20 ];
platforms = platforms.all;
maintainers = with maintainers; [ minijackson ];
};
}

View file

@ -8030,6 +8030,7 @@ in
cargo-bloat = callPackage ../development/tools/rust/cargo-bloat { };
cargo-expand = callPackage ../development/tools/rust/cargo-expand { };
cargo-fuzz = callPackage ../development/tools/rust/cargo-fuzz { };
cargo-inspect = callPackage ../development/tools/rust/cargo-inspect { };
cargo-make = callPackage ../development/tools/rust/cargo-make {
inherit (darwin.apple_sdk.frameworks) Security;
};