summary refs log tree commit diff
path: root/pkgs/tools/misc/dust
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-09-01 10:55:50 +0000
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-09-02 12:11:36 +0200
commitf18456f8650e479ba1189d2e62b36462af4f7156 (patch)
treecc587ff2e1ca16c4a16c9991b656e39efcac19a8 /pkgs/tools/misc/dust
parentd168bd6447a13e24f36b03071d5207458c066224 (diff)
downloadnixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.tar
nixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.tar.gz
nixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.tar.bz2
nixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.tar.lz
nixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.tar.xz
nixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.tar.zst
nixpkgs-f18456f8650e479ba1189d2e62b36462af4f7156.zip
du-dust: 0.8.2 -> 0.8.3
Diffstat (limited to 'pkgs/tools/misc/dust')
-rw-r--r--pkgs/tools/misc/dust/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/misc/dust/default.nix b/pkgs/tools/misc/dust/default.nix
index c0746613157..bd4452263a9 100644
--- a/pkgs/tools/misc/dust/default.nix
+++ b/pkgs/tools/misc/dust/default.nix
@@ -1,14 +1,14 @@
-{ lib, fetchFromGitHub, rustPlatform }:
+{ stdenv, lib, fetchFromGitHub, rustPlatform, AppKit }:
 
 rustPlatform.buildRustPackage rec {
   pname = "du-dust";
-  version = "0.8.2";
+  version = "0.8.3";
 
   src = fetchFromGitHub {
     owner = "bootandy";
     repo = "dust";
     rev = "v${version}";
-    sha256 = "sha256-ZPIxJ8D8yxaL7RKIVKIIlqwUXBbVM0JprE5TSTGkhfI=";
+    sha256 = "sha256-+YcHiW4kR4JeIY6zv1WJ97dCIakvtbn8+b9tLFH+aLE=";
     # Remove unicode file names which leads to different checksums on HFS+
     # vs. other filesystems because of unicode normalisation.
     postFetch = ''
@@ -16,7 +16,9 @@ rustPlatform.buildRustPackage rec {
     '';
   };
 
-  cargoSha256 = "sha256-dgAyxSVNe+UKuT0UJqPvYcrLolKtC2+EN/okSvzkhcA=";
+  cargoSha256 = "sha256-yKj9CBoEC6UJf4L+XO2qi69//45lSqblMe8ofnLctEw=";
+
+  buildInputs = lib.optionals stdenv.isDarwin [ AppKit ];
 
   doCheck = false;