nixpkgs/pkgs/tools/misc/dust/default.nix

31 lines
858 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2018-04-18 21:11:28 +01:00
rustPlatform.buildRustPackage rec {
pname = "du-dust";
2021-08-05 11:33:09 +01:00
version = "0.6.2";
2018-04-18 21:11:28 +01:00
src = fetchFromGitHub {
owner = "bootandy";
repo = "dust";
rev = "v${version}";
2021-08-05 11:33:09 +01:00
sha256 = "sha256-5GhoL3by4sXhFJrNZi/UlERBa+s2oqDVVJODY0kdfxI=";
2020-02-19 23:18:18 +00:00
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
extraPostFetch = ''
2021-02-12 03:22:05 +00:00
rm -r $out/tests/test_dir_unicode/
2020-02-19 23:18:18 +00:00
'';
2018-04-18 21:11:28 +01:00
};
2021-08-05 11:33:09 +01:00
cargoSha256 = "sha256-cgH3jrZPGUHiBDeJ9qj80dU+Vbz+wHMOsCaGAvJY6mg=";
2018-04-18 21:11:28 +01:00
doCheck = false;
meta = with lib; {
2018-04-18 21:11:28 +01:00
description = "du + rust = dust. Like du but more intuitive";
2020-02-19 23:18:18 +00:00
homepage = "https://github.com/bootandy/dust";
2018-04-18 21:11:28 +01:00
license = licenses.asl20;
2021-02-12 03:22:05 +00:00
maintainers = with maintainers; [ infinisil SuperSandro2000 ];
2021-07-18 14:24:03 +01:00
mainProgram = "dust";
2018-04-18 21:11:28 +01:00
};
}