mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #233849 from Aleksanaa/gmchart
go-mod-graph-chart: init at 0.5.3
This commit is contained in:
commit
1eae9f8f1b
2 changed files with 31 additions and 0 deletions
29
pkgs/development/tools/go-mod-graph-chart/default.nix
Normal file
29
pkgs/development/tools/go-mod-graph-chart/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue