1 { lib, buildGoModule, fetchFromGitHub }:
4 pname = "go-junit-report";
7 src = fetchFromGitHub {
9 repo = "go-junit-report";
11 sha256 = "sha256-s4XVjACmpd10C5k+P3vtcS/aWxI6UkSUPyxzLhD2vRI=";
14 vendorHash = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY=";
16 ldflags = [ "-s" "-w" ];
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 ];