Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 27 lines 698 B view raw
1{ lib 2, rustPlatform 3, fetchFromGitHub 4}: 5 6rustPlatform.buildRustPackage rec { 7 pname = "erdtree"; 8 version = "3.0.1"; 9 10 src = fetchFromGitHub { 11 owner = "solidiquis"; 12 repo = pname; 13 rev = "v${version}"; 14 hash = "sha256-vaxfW5LuXN/Q8cjJY2V0xTahEtZKYJf+8y2z9Df4WFs="; 15 }; 16 17 cargoHash = "sha256-BB25p9Zy3Z7oztt/AZRNc7mmrSYfVFyUr/t5t2azoYg="; 18 19 meta = with lib; { 20 description = "File-tree visualizer and disk usage analyzer"; 21 homepage = "https://github.com/solidiquis/erdtree"; 22 changelog = "https://github.com/solidiquis/erdtree/releases/tag/${src.rev}"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ figsoda zendo ]; 25 mainProgram = "erd"; 26 }; 27}