nixpkgs/pkgs/by-name/pa/parallel-disk-usage/package.nix

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

31 lines
799 B
Nix
Raw Normal View History

2024-01-11 19:03:37 +00:00
{
lib,
fetchFromGitHub,
rustPlatform,
2024-02-04 21:58:10 +00:00
stdenv,
2024-01-11 19:03:37 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "parallel-disk-usage";
version = "0.9.0";
src = fetchFromGitHub {
owner = "KSXGitHub";
repo = pname;
rev = version;
hash = "sha256-kOMbVKwnGh47zZkWAWkctfTIE5F8oeSnAgJEU/OdsQc=";
};
cargoHash = "sha256-Jk9sNvApq4t/FoEzfjlDT2Td5sr38Jbdo6RoaOVQJK8=";
meta = with lib; {
description = "Highly parallelized, blazing fast directory tree analyzer";
homepage = "https://github.com/KSXGitHub/parallel-disk-usage";
license = licenses.asl20;
maintainers = [maintainers.peret];
2024-01-13 09:58:56 +00:00
mainProgram = "pdu";
2024-02-04 21:58:10 +00:00
# broken due to unit test failure
# https://github.com/KSXGitHub/parallel-disk-usage/issues/251
broken = stdenv.isLinux && stdenv.isAarch64;
2024-01-11 19:03:37 +00:00
};
}