summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-12 04:22:05 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-12 20:35:40 +0100
commitcd6ce0c53488718a744483631d81e73f5e59e57b (patch)
tree855c8531ca7514fc980afde90721298432e7d333 /pkgs
parent141126f5e150dd5459182db5c8ed67a63c2c6d65 (diff)
downloadnixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.tar
nixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.tar.gz
nixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.tar.bz2
nixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.tar.lz
nixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.tar.xz
nixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.tar.zst
nixpkgs-cd6ce0c53488718a744483631d81e73f5e59e57b.zip
dust: fix extraPostFetch
Diffstat (limited to 'pkgs')
-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 7997f2119a2..781ee30deba 100644
--- a/pkgs/tools/misc/dust/default.nix
+++ b/pkgs/tools/misc/dust/default.nix
@@ -8,11 +8,11 @@ rustPlatform.buildRustPackage rec {
     owner = "bootandy";
     repo = "dust";
     rev = "v${version}";
-    sha256 = "sha256-JwGa1icwV1yqxy90Psd9bzM7VzM7HPA6kONkI3Y745Q=";
+    sha256 = "1knl7kwngmq598bnlvlq9x8sqp914sv1abfm55kw9f7mja2d6pw0";
     # Remove unicode file names which leads to different checksums on HFS+
     # vs. other filesystems because of unicode normalisation.
     extraPostFetch = ''
-      rm -rf $out/src/test_dir3/
+      rm -r $out/tests/test_dir_unicode/
     '';
   };
 
@@ -24,6 +24,6 @@ rustPlatform.buildRustPackage rec {
     description = "du + rust = dust. Like du but more intuitive";
     homepage = "https://github.com/bootandy/dust";
     license = licenses.asl20;
-    maintainers = [ maintainers.infinisil ];
+    maintainers = with maintainers; [ infinisil SuperSandro2000 ];
   };
 }