about summary refs log tree commit diff
path: root/pkgs/tools/misc/diskus
diff options
context:
space:
mode:
authorfuerbringer <severin@fuerbringer.info>2019-09-21 18:15:08 +0200
committerfuerbringer <severin@fuerbringer.info>2019-09-21 18:15:08 +0200
commitea21278830bb2e5d6895df9784d848b0a38f23ad (patch)
tree2835310da4215209a473586e908796e15e0bd1d7 /pkgs/tools/misc/diskus
parent2c3dcbb9d09a9757c26a1bc34ba5b8f263a7e554 (diff)
diskus: 0.5.0 -> 0.6.0
Diffstat (limited to 'pkgs/tools/misc/diskus')
-rw-r--r--pkgs/tools/misc/diskus/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/tools/misc/diskus/default.nix b/pkgs/tools/misc/diskus/default.nix
index 591cd5fe04080..7b1e5ed6c0af6 100644
--- a/pkgs/tools/misc/diskus/default.nix
+++ b/pkgs/tools/misc/diskus/default.nix
@@ -2,18 +2,18 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "diskus";
-  version = "0.5.0";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "sharkdp";
     repo = "diskus";
     rev = "v${version}";
-    sha256 = "18scxspi5ncags8bnxq4ah9w8hrlwwlgpq7q9qfh4d81asmbyr8n";
+    sha256 = "087w58q5kd3r23a9qnhqgvq4vhv69b5a6a7n3kh09g5cjszy8s05";
   };
 
   buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
 
-  cargoSha256 = "13d4h6f3idwj2bxafqrjihgwwr8v3k158r7b569jp7q2v1msqqx1";
+  cargoSha256 = "07wsl1vw2aimgmrlri03pfcxv13klqxyvmmsbzgnq9sc9qzzy8gp";
 
   meta = with stdenv.lib; {
     description = "A minimal, fast alternative to 'du -sh'";
@@ -21,5 +21,9 @@ rustPlatform.buildRustPackage rec {
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = [ maintainers.fuerbringer ];
     platforms = platforms.unix;
+    longDescription = ''
+      diskus is a very simple program that computes the total size of the
+      current directory. It is a parallelized version of du -sh.
+    '';
   };
 }