2021-08-25 22:05:40 +00:00
|
|
|
{ fetchFromGitHub, lib, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "dutree";
|
|
|
|
version = "0.2.18";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nachoparker";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-08-27 20:59:36 +00:00
|
|
|
sha256 = "17lm8jd07bi499mywg2iq669im34j4x4yhc8a3adxn12f8j0dfg7";
|
|
|
|
# test directory has files with unicode names which causes hash mismatches
|
|
|
|
# It is also not used by any tests or parts of build process
|
2022-05-17 19:10:33 +00:00
|
|
|
postFetch = ''
|
2021-08-27 20:59:36 +00:00
|
|
|
rm -r $out/test
|
|
|
|
'';
|
2021-08-25 22:05:40 +00:00
|
|
|
};
|
|
|
|
|
2024-07-03 12:29:10 +00:00
|
|
|
cargoHash = "sha256-/E+4yJEhZbERy4vOqn0Ruv3zOcd2FA+q41qZ0Tvg4T0=";
|
2021-08-25 22:05:40 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Tool to analyze file system usage written in Rust";
|
|
|
|
homepage = "https://github.com/nachoparker/dutree";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "dutree";
|
2021-08-25 22:05:40 +00:00
|
|
|
};
|
|
|
|
}
|