biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gocover-cobertura / default.nix
blobf1d005a47059e1437d0450b95d21d706a8af1d8d
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   };