nixpkgs/pkgs/tools/misc/dua/default.nix

32 lines
941 B
Nix
Raw Normal View History

2021-07-22 07:57:49 +02:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, Foundation }:
rustPlatform.buildRustPackage rec {
pname = "dua";
2021-09-19 07:14:27 +02:00
version = "2.14.7";
2021-07-22 07:57:49 +02:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
src = fetchFromGitHub {
owner = "Byron";
repo = "dua-cli";
rev = "v${version}";
2021-09-19 07:14:27 +02:00
sha256 = "sha256-HkNWFWdyjpnJJANfnRDhmnhYbZIhrM9aIVN/Ov3/hK0=";
2020-02-22 09:18:10 +01:00
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
extraPostFetch = ''
rm -r $out/tests/fixtures
'';
};
2021-09-19 07:14:27 +02:00
cargoSha256 = "sha256-nfQGAjekd6cegvKPDxyOfcIhgagH61MT+2YVB2WppvQ=";
2020-02-22 09:18:10 +01:00
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 ];
};
}