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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1017 B
Nix
Raw Normal View History

2021-07-22 05:57:49 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, Foundation }:
rustPlatform.buildRustPackage rec {
pname = "dua";
2022-05-18 04:20:00 +00:00
version = "2.17.5";
2021-07-22 05:57:49 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
src = fetchFromGitHub {
owner = "Byron";
repo = "dua-cli";
rev = "v${version}";
2022-05-18 04:20:00 +00:00
sha256 = "sha256-dpkUbZz/bIiTMhZalXHGct77qMzYB6LATs7MPVyW1GY=";
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
'';
};
2022-05-18 04:20:00 +00:00
cargoSha256 = "sha256-xBiabY0aGPxrAHypuSg3AF/EcChDgtIK9cJDCeTNkm0=";
2020-02-22 08:18:10 +00: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";
2022-05-18 04:20:00 +00:00
changelog = "https://github.com/Byron/dua-cli/raw/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ killercup ];
};
}