30 lines
841 B
Nix
30 lines
841 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dua";
|
|
version = "2.10.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Byron";
|
|
repo = "dua-cli";
|
|
rev = "v${version}";
|
|
sha256 = "0imf9ngmyhyj5jdr99g1xc3vqzr61fnz32bxhmy63n1szylig5zq";
|
|
# 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 = "1czc0jma5k6idv463kn5qrirq8apgfrcxwv2yjk0pxy6vkji6154";
|
|
|
|
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 ];
|
|
};
|
|
}
|