nixpkgs/pkgs/development/tools/go-junit-report/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
615 B
Nix
Raw Normal View History

2022-05-02 14:58:30 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2022-05-02 14:58:30 +00:00
buildGoModule rec {
pname = "go-junit-report";
2023-10-19 06:29:37 +00:00
version = "2.1.0";
src = fetchFromGitHub {
owner = "jstemmer";
repo = "go-junit-report";
2022-05-02 14:58:30 +00:00
rev = "v${version}";
2023-10-19 06:29:37 +00:00
sha256 = "sha256-s4XVjACmpd10C5k+P3vtcS/aWxI6UkSUPyxzLhD2vRI=";
};
vendorHash = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY=";
2022-05-02 14:58:30 +00:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
2022-05-02 14:58:30 +00:00
description = "Convert go test output to junit xml";
homepage = "https://github.com/jstemmer/go-junit-report";
license = licenses.mit;
maintainers = with maintainers; [ cryptix ];
};
}