Unverified Commit 1eae9f8f authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233849 from Aleksanaa/gmchart

go-mod-graph-chart: init at 0.5.3
parents 178b88e3 d370e1cf
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -27359,6 +27359,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 { };