lol
at 24.05-pre 29 lines 648 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "go-mod-graph-chart"; 8 version = "0.5.3"; 9 10 src = fetchFromGitHub { 11 owner = "PaulXu-cn"; 12 repo = pname; 13 rev = "v${version}"; 14 hash = "sha256-vitUZXQyAj72ed9Gukr/sAT/iWWMhwsxjZhf2a9CM7I="; 15 }; 16 17 vendorHash = null; 18 19 # check requires opening webpage 20 doCheck = false; 21 22 meta = with lib; { 23 description = "A tool build chart by go mod graph output with zero dependencies"; 24 homepage = "https://github.com/PaulXu-cn/go-mod-graph-chart"; 25 mainProgram = "gmchart"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ aleksana ]; 28 }; 29}