2021-07-22 05:57:49 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, Foundation }:
|
2019-06-22 14:15:16 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "dua";
|
2022-05-18 04:20:00 +00:00
|
|
|
version = "2.17.5";
|
2021-05-04 23:43:29 +00:00
|
|
|
|
2021-07-22 05:57:49 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
|
2019-06-22 14:15:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Byron";
|
|
|
|
repo = "dua-cli";
|
|
|
|
rev = "v${version}";
|
2022-05-18 04:20:00 +00:00
|
|
|
sha256 = "sha256-dpkUbZz/bIiTMhZalXHGct77qMzYB6LATs7MPVyW1GY=";
|
2020-02-22 08:18:10 +00:00
|
|
|
# Remove unicode file names which leads to different checksums on HFS+
|
|
|
|
# vs. other filesystems because of unicode normalisation.
|
2022-05-17 19:10:33 +00:00
|
|
|
postFetch = ''
|
2020-02-22 08:18:10 +00:00
|
|
|
rm -r $out/tests/fixtures
|
|
|
|
'';
|
2019-06-22 14:15:16 +00:00
|
|
|
};
|
|
|
|
|
2022-05-18 04:20:00 +00:00
|
|
|
cargoSha256 = "sha256-xBiabY0aGPxrAHypuSg3AF/EcChDgtIK9cJDCeTNkm0=";
|
2020-02-14 02:00:26 +00:00
|
|
|
|
2020-02-22 08:18:10 +00:00
|
|
|
doCheck = false;
|
2019-06-22 14:15:16 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool to conveniently learn about the disk usage of directories, fast!";
|
|
|
|
homepage = "https://github.com/Byron/dua-cli";
|
2022-05-18 04:20:00 +00:00
|
|
|
changelog = "https://github.com/Byron/dua-cli/raw/v${version}/CHANGELOG.md";
|
2019-06-22 14:15:16 +00:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ killercup ];
|
|
|
|
};
|
|
|
|
}
|