fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / go / go-junit-report / package.nix
bloba6eabc0b573f5502026c793deb5b5a24fe3bfd4d
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "go-junit-report";
9   version = "2.1.0";
11   src = fetchFromGitHub {
12     owner = "jstemmer";
13     repo = "go-junit-report";
14     rev = "v${version}";
15     sha256 = "sha256-s4XVjACmpd10C5k+P3vtcS/aWxI6UkSUPyxzLhD2vRI=";
16   };
18   vendorHash = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "Convert go test output to junit xml";
27     mainProgram = "go-junit-report";
28     homepage = "https://github.com/jstemmer/go-junit-report";
29     license = licenses.mit;
30     maintainers = with maintainers; [ cryptix ];
31   };