about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-07-07 07:01:16 -0500
committerGitHub <noreply@github.com>2019-07-07 07:01:16 -0500
commit1f2157dc7099037058a1a4a79ffa21d1cffc3637 (patch)
tree94608e7823b2343ccd86c97777134656dd2a8166 /pkgs/development/tools/rust
parent5510c82fdefecf411f07d68dbbf27d75924025b9 (diff)
parent2ff8d2ab6da6bcb191f38c953101951ff5826c2f (diff)
downloadnixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.tar
nixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.tar.gz
nixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.tar.bz2
nixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.tar.lz
nixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.tar.xz
nixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.tar.zst
nixlib-1f2157dc7099037058a1a4a79ffa21d1cffc3637.zip
Merge pull request #63672 from minijackson/init-cargo-inspect
cargo-inspect: init at 0.10.1
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cargo-inspect/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/rust/cargo-inspect/default.nix b/pkgs/development/tools/rust/cargo-inspect/default.nix
new file mode 100644
index 000000000000..ec2325fc6258
--- /dev/null
+++ b/pkgs/development/tools/rust/cargo-inspect/default.nix
@@ -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 ];
+  };
+}