1 { lib, buildGoModule, fetchFromGitHub }:
4 pname = "go-junit-report";
7 src = fetchFromGitHub {
9 repo = "go-junit-report";
11 sha256 = "sha256-Xz2tJtacsd6PqqA0ZT2eRgTACZonhdDtRWfBGcHW3A4=";
14 vendorSha256 = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY=";
16 ldflags = [ "-s" "-w" ];
19 description = "Convert go test output to junit xml";
20 homepage = "https://github.com/jstemmer/go-junit-report";
21 license = licenses.mit;
22 maintainers = with maintainers; [ cryptix ];