summary refs log tree commit diff
path: root/pkgs/tools/misc/dust
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-05-07 06:52:03 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-05-07 06:52:03 +0000
commit17fa6d66f6458f298536f75c3620105aadc13da2 (patch)
tree183bd2c0f202b94517a694f28658523f33092a17 /pkgs/tools/misc/dust
parent590d05ac6cef6ff3fc471095490d6e26631b4813 (diff)
downloadnixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.tar
nixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.tar.gz
nixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.tar.bz2
nixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.tar.lz
nixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.tar.xz
nixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.tar.zst
nixpkgs-17fa6d66f6458f298536f75c3620105aadc13da2.zip
du-dust: 0.8.5 -> 0.8.6
Diffstat (limited to 'pkgs/tools/misc/dust')
-rw-r--r--pkgs/tools/misc/dust/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/dust/default.nix b/pkgs/tools/misc/dust/default.nix
index 15c1915e66f..2e08e0654f8 100644
--- a/pkgs/tools/misc/dust/default.nix
+++ b/pkgs/tools/misc/dust/default.nix
@@ -2,13 +2,13 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "du-dust";
-  version = "0.8.5";
+  version = "0.8.6";
 
   src = fetchFromGitHub {
     owner = "bootandy";
     repo = "dust";
     rev = "v${version}";
-    sha256 = "sha256-NP87I2D3+hKfyeK+QawVopSJOKYmGNH9XvNR9GTQcls=";
+    sha256 = "sha256-PEW13paHNQ1JAz9g3pIdCB1f1KqIz8XC4gGE0z/glOk=";
     # Remove unicode file names which leads to different checksums on HFS+
     # vs. other filesystems because of unicode normalisation.
     postFetch = ''
@@ -16,7 +16,7 @@ rustPlatform.buildRustPackage rec {
     '';
   };
 
-  cargoHash = "sha256-weg1etimlSenKP6UNuO8iM7gbH3+7XP98xYE4VlHhhs=";
+  cargoHash = "sha256-VJBmVidLkx4nIQULtDoywV4QGmgf53YAAXLJH/LZ/j0=";
 
   nativeBuildInputs = [ installShellFiles ];