nixpkgs/pkgs/tools/misc/dua/default.nix
2021-10-29 10:57:19 +00:00

32 lines
942 B
Nix

{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, Foundation }:
rustPlatform.buildRustPackage rec {
pname = "dua";
version = "2.14.11";
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
src = fetchFromGitHub {
owner = "Byron";
repo = "dua-cli";
rev = "v${version}";
sha256 = "sha256-XMhgTJiP4whw1r+WtdG5CsQl/GIZPEg7/ElIEMZyWqM=";
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
extraPostFetch = ''
rm -r $out/tests/fixtures
'';
};
cargoSha256 = "sha256-B4e8wT/RhpwtCb11HqN8vksshBaF/CmpMPT62aBuFnw=";
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 ];
};
}