go-mod-graph-chart: init at 0.5.3

This commit is contained in:
aleksana 2023-05-25 00:26:21 +08:00
parent 19baa34af2
commit d370e1cf98
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "go-mod-graph-chart";
version = "0.5.3";
src = fetchFromGitHub {
owner = "PaulXu-cn";
repo = pname;
rev = "v${version}";
hash = "sha256-vitUZXQyAj72ed9Gukr/sAT/iWWMhwsxjZhf2a9CM7I=";
};
vendorHash = null;
# check requires opening webpage
doCheck = false;
meta = with lib; {
description = "A tool build chart by go mod graph output with zero dependencies";
homepage = "https://github.com/PaulXu-cn/go-mod-graph-chart";
mainProgram = "gmchart";
license = licenses.mit;
maintainers = with maintainers; [ aleksana ];
};
}

View file

@ -27350,6 +27350,8 @@ with pkgs;
go-mockery = callPackage ../development/tools/go-mockery { };
go-mod-graph-chart = callPackage ../development/tools/go-mod-graph-chart { };
gomacro = callPackage ../development/tools/gomacro { };
gomodifytags = callPackage ../development/tools/gomodifytags { };