evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gocover-cobertura / package.nix
blobbc8b4e9f0f2b3a9b4d85df5559c606c27989f867
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "gocover-cobertura";
8   version = "1.2.0";
10   src = fetchFromGitHub {
11     owner = "boumenot";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-nbwqfObU1tod5gWa9UbhmS6CpLLilvFyvNJ6XjeR8Qc=";
15   };
17   vendorHash = null;
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     homepage = "https://github.com/boumenot/gocover-cobertura";
23     description = "This is a simple helper tool for generating XML output in Cobertura format for CIs like Jenkins and others from go tool cover output";
24     mainProgram = "gocover-cobertura";
25     license = licenses.mit;
26     maintainers = with maintainers; [ hmajid2301 ];
27   };