31 lines
871 B
Nix
31 lines
871 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dua";
|
|
version = "2.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Byron";
|
|
repo = "dua-cli";
|
|
rev = "v${version}";
|
|
sha256 = "1r94fcygp9mmg457dkksx3mjdxfddzfzl6n0rmxasiinsz0hak4c";
|
|
# Remove unicode file names which leads to different checksums on HFS+
|
|
# vs. other filesystems because of unicode normalisation.
|
|
extraPostFetch = ''
|
|
rm -r $out/tests/fixtures
|
|
'';
|
|
};
|
|
|
|
cargoSha256 = "15a4hari3my59xvmkll2jlvb1jyf8gg8alp91nvh3bagpajpvdx6";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A tool to conveniently learn about the disk usage of directories, fast!";
|
|
homepage = "https://github.com/Byron/dua-cli";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ killercup ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|