Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 26 lines 655 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5}: 6rustPlatform.buildRustPackage rec { 7 pname = "parallel-disk-usage"; 8 version = "0.21.0"; 9 10 src = fetchFromGitHub { 11 owner = "KSXGitHub"; 12 repo = "parallel-disk-usage"; 13 rev = version; 14 hash = "sha256-QPZT/SBiF6vDAhQzlxh+encoxbZ9Hi2kOZ2XalZkErg="; 15 }; 16 17 cargoHash = "sha256-plC+VB6dp7W7dROdYwmhTMpPHEwRSgsArwY9jrYycBk="; 18 19 meta = with lib; { 20 description = "Highly parallelized, blazing fast directory tree analyzer"; 21 homepage = "https://github.com/KSXGitHub/parallel-disk-usage"; 22 license = licenses.asl20; 23 maintainers = [ maintainers.peret ]; 24 mainProgram = "pdu"; 25 }; 26}