Unverified Commit 62927420 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

gocover-cobertura: 1.3.0 -> 1.4.0 (#449586)

parents 5c45b63d 452c67e7
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -4,33 +4,33 @@
  fetchFromGitHub,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "gocover-cobertura";
  version = "1.3.0";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "boumenot";
    repo = "gocover-cobertura";
    rev = "v${version}";
    sha256 = "sha256-Cxv1iuCYHSI0BFR1OLbeDIQfVLlMDxlTgU7ljpXWHjU=";
    rev = "v${finalAttrs.version}";
    sha256 = "sha256-9KYNK6YV+iYB5Mmporzzw0aYTPCanvX7JALoP72dMtU=";
  };

  deleteVendor = true;
  vendorHash = "sha256-b1fUikmBnc+q0KsRhK9p4VJjVnt6XFjmX9AE48TAxXg=";
  vendorHash = "sha256-tPCiU7UVltYaHM1JVRje6EeG6Thn+3qm5I3MjKvD1/o=";

  ldflags = [
    "-s"
    "-w"
  ];

  meta = with lib; {
    homepage = "https://github.com/boumenot/gocover-cobertura";
  meta = {
    description = "Simple helper tool for generating XML output in Cobertura format for CIs like Jenkins and others from go tool cover output";
    homepage = "https://github.com/boumenot/gocover-cobertura";
    license = lib.licenses.mit;
    mainProgram = "gocover-cobertura";
    license = licenses.mit;
    maintainers = with maintainers; [
    maintainers = with lib.maintainers; [
      gabyx
      hmajid2301
    ];
  };
}
})