evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / go-junit-report / package.nix
blobc8a7322b42c5304652235d68861483db5363f10d
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "go-junit-report";
5   version = "2.1.0";
7   src = fetchFromGitHub {
8     owner = "jstemmer";
9     repo = "go-junit-report";
10     rev = "v${version}";
11     sha256 = "sha256-s4XVjACmpd10C5k+P3vtcS/aWxI6UkSUPyxzLhD2vRI=";
12   };
14   vendorHash = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Convert go test output to junit xml";
20     mainProgram = "go-junit-report";
21     homepage = "https://github.com/jstemmer/go-junit-report";
22     license = licenses.mit;
23     maintainers = with maintainers; [ cryptix ];
24   };