2023-05-05 16:44:59 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
|
|
|
, darwin
|
|
|
|
}:
|
2019-06-22 14:15:16 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "dua";
|
2023-05-05 16:44:59 +00:00
|
|
|
version = "2.20.1";
|
2019-06-22 14:15:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Byron";
|
|
|
|
repo = "dua-cli";
|
|
|
|
rev = "v${version}";
|
2023-05-05 16:44:59 +00:00
|
|
|
hash = "sha256-yBPzf0ZpL49CupdtxjEo9QiOC5vwTcqdfAC2Q6WcNhE=";
|
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
|
|
|
};
|
|
|
|
|
2023-05-05 16:44:59 +00:00
|
|
|
cargoHash = "sha256-jgPOC8xtxYyKhYzsJezefwgopVL+1MED+Wf5h6bCYBg=";
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Foundation
|
|
|
|
];
|
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; {
|
2023-05-05 16:44:59 +00:00
|
|
|
description = "A tool to conveniently learn about the disk usage of directories";
|
2019-06-22 14:15:16 +00:00
|
|
|
homepage = "https://github.com/Byron/dua-cli";
|
2023-05-05 16:44:59 +00:00
|
|
|
changelog = "https://github.com/Byron/dua-cli/blob/v${version}/CHANGELOG.md";
|
2019-06-22 14:15:16 +00:00
|
|
|
license = with licenses; [ mit ];
|
2023-05-05 16:44:59 +00:00
|
|
|
maintainers = with maintainers; [ figsoda killercup ];
|
2019-06-22 14:15:16 +00:00
|
|
|
};
|
|
|
|
}
|