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.

26 lines
631 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, rustPlatform
2024-01-11 19:03:37 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "parallel-disk-usage";
2024-02-14 19:26:45 +00:00
version = "0.9.2";
2024-01-11 19:03:37 +00:00
src = fetchFromGitHub {
owner = "KSXGitHub";
repo = pname;
rev = version;
2024-02-14 19:26:45 +00:00
hash = "sha256-nWn6T1vJ4UANuU5EL5Ws5qT+k8Wd3Cm0SOJEgAbsCvo=";
2024-01-11 19:03:37 +00:00
};
2024-02-14 19:26:45 +00:00
cargoHash = "sha256-69DwIDGX4b+l2ay+OH3gjHnCj43VXruzBklOkS6M0DY=";
2024-01-11 19:03:37 +00:00
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-01-11 19:03:37 +00:00
};
}