about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/go-callvis/default.nix
blob: a954781fb28f9ce68ff076de45cc556c7752b0fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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";
    mainProgram = "go-callvis";
    homepage = "https://github.com/ofabry/go-callvis";
    license = licenses.mit;
    maintainers = with maintainers; [ meain ];
  };
}