biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / go-mod-graph-chart / default.nix
blob11f7f4c6d9cff0f65591bfa91687716eda639278
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "go-mod-graph-chart";
8   version = "0.5.3";
10   src = fetchFromGitHub {
11     owner = "PaulXu-cn";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-vitUZXQyAj72ed9Gukr/sAT/iWWMhwsxjZhf2a9CM7I=";
15   };
17   vendorHash = null;
19   # check requires opening webpage
20   doCheck = false;
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   };