Merge pull request #236788 from meain/go-callvis
go-callvis: init at 0.7.0
This commit is contained in:
commit
02544d7bf0
2 changed files with 33 additions and 0 deletions
31
pkgs/development/tools/go-callvis/default.nix
Normal file
31
pkgs/development/tools/go-callvis/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "go-callvis";
|
||||||
|
version = "0.7.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ofabry";
|
||||||
|
repo = "go-callvis";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-PIzmnqlK+uFtzZW4H0xpP5c+X30hFvOjQydvreJn4xM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-AfbUxA5C5dH70+vqC+1RGaTt7S0FL9CBcxel0ifmHKs=";
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
# Build errors in github.com/goccy/go-graphviz/internal/ccall when format hardening is enabled:
|
||||||
|
# cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Visualize call graph of a Go program using Graphviz";
|
||||||
|
homepage = "https://github.com/ofabry/go-callvis";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ meain ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -27442,6 +27442,8 @@ with pkgs;
|
||||||
|
|
||||||
goconvey = callPackage ../development/tools/goconvey { };
|
goconvey = callPackage ../development/tools/goconvey { };
|
||||||
|
|
||||||
|
go-callvis = callPackage ../development/tools/go-callvis { };
|
||||||
|
|
||||||
gofumpt = callPackage ../development/tools/gofumpt { };
|
gofumpt = callPackage ../development/tools/gofumpt { };
|
||||||
|
|
||||||
gotags = callPackage ../development/tools/gotags { };
|
gotags = callPackage ../development/tools/gotags { };
|
||||||
|
|
Loading…
Reference in a new issue