nixpkgs-suyu/pkgs/tools/misc/dust/default.nix

31 lines
858 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2018-04-18 22:11:28 +02:00
rustPlatform.buildRustPackage rec {
pname = "du-dust";
2021-09-22 07:18:53 +02:00
version = "0.7.5";
2018-04-18 22:11:28 +02:00
src = fetchFromGitHub {
owner = "bootandy";
repo = "dust";
rev = "v${version}";
2021-09-22 07:18:53 +02:00
sha256 = "sha256-0r0cDzW18uF7DHvzkUCHHHN+2M21xdi2ffPwDGMtyw8=";
2020-02-20 00:18:18 +01:00
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
extraPostFetch = ''
2021-02-12 04:22:05 +01:00
rm -r $out/tests/test_dir_unicode/
2020-02-20 00:18:18 +01:00
'';
2018-04-18 22:11:28 +02:00
};
2021-09-22 07:18:53 +02:00
cargoSha256 = "sha256-LAow4DVqON5vrYBU8v8wzg/HcHxm1GqS9DMre3y12Jo=";
2018-04-18 22:11:28 +02:00
doCheck = false;
meta = with lib; {
2018-04-18 22:11:28 +02:00
description = "du + rust = dust. Like du but more intuitive";
2020-02-20 00:18:18 +01:00
homepage = "https://github.com/bootandy/dust";
2018-04-18 22:11:28 +02:00
license = licenses.asl20;
2021-02-12 04:22:05 +01:00
maintainers = with maintainers; [ infinisil SuperSandro2000 ];
2021-07-18 15:24:03 +02:00
mainProgram = "dust";
2018-04-18 22:11:28 +02:00
};
}