summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-14 09:48:42 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-14 09:48:42 +0800
commitbf811c4c389cd4077a8a52340af1537048714111 (patch)
treef9b3400ef4aca7b85ca74fe063e5f7483c1ed4f4 /pkgs/development/tools/rust
parent27b7e11e7fdbab32ac4ca867901b673d86a85a1a (diff)
downloadnixpkgs-bf811c4c389cd4077a8a52340af1537048714111.tar
nixpkgs-bf811c4c389cd4077a8a52340af1537048714111.tar.gz
nixpkgs-bf811c4c389cd4077a8a52340af1537048714111.tar.bz2
nixpkgs-bf811c4c389cd4077a8a52340af1537048714111.tar.lz
nixpkgs-bf811c4c389cd4077a8a52340af1537048714111.tar.xz
nixpkgs-bf811c4c389cd4077a8a52340af1537048714111.tar.zst
nixpkgs-bf811c4c389cd4077a8a52340af1537048714111.zip
cargo-bloat: 0.7.1 -> 0.7.2
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cargo-bloat/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/cargo-bloat/default.nix b/pkgs/development/tools/rust/cargo-bloat/default.nix
index 20996537c32..71633a8a885 100644
--- a/pkgs/development/tools/rust/cargo-bloat/default.nix
+++ b/pkgs/development/tools/rust/cargo-bloat/default.nix
@@ -1,19 +1,19 @@
-{ stdenv, rustPlatform, fetchFromGitHub }:
+{ lib, rustPlatform, fetchFromGitHub }:
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-bloat";
-  version = "0.7.1";
+  version = "0.7.2";
 
   src = fetchFromGitHub {
     owner = "RazrFalcon";
     repo = pname;
     rev = "v${version}";
-    sha256 = "05dk2y223fjaw49sj0pia9ddccs1j0x4fdyz0bnss38dgf1njygx";
+    sha256 = "1g011c98vix0285ws8xby5v50272v15zfyaj948vazsb4zl0gxbm";
   };
 
   cargoSha256 = "0bpy8888zbqy9b8hkbfsdxqcs88dn2r7p3qnhfn7a6ri4bw7ihhw";
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A tool and Cargo subcommand that helps you find out what takes most of the space in your executable";
     homepage = "https://github.com/RazrFalcon/cargo-bloat";
     license = licenses.mit;