From 6ce53a279b0e3076aa4b50d0b53ad1d7c95b32e2 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 3 Apr 2023 09:02:57 -0400 Subject: [PATCH] jacoco: 0.8.8 -> 0.8.9 Changelog: https://www.jacoco.org/jacoco/trunk/doc/changes.html --- pkgs/development/tools/analysis/jacoco/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/jacoco/default.nix b/pkgs/development/tools/analysis/jacoco/default.nix index 7382933fa3c6..4fbef4a25950 100644 --- a/pkgs/development/tools/analysis/jacoco/default.nix +++ b/pkgs/development/tools/analysis/jacoco/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { pname = "jacoco"; - version = "0.8.8"; + version = "0.8.9"; src = fetchzip { url = "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/${version}/jacoco-${version}.zip"; stripRoot = false; - sha256 = "sha256-NfXkMAFG1yMj1o06Hlhg9+B4RzL0I36fAGjZx3IC+NQ="; + sha256 = "sha256-gxe3HoOAj4u6k7hBDe6r9uPj4xSt1wFNPVzhM9YAEMI="; }; outputs = [ "out" "doc" ]; @@ -35,7 +35,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A free code coverage library for Java"; - homepage = "https://jacoco.org/jacoco"; + homepage = "https://www.jacoco.org/jacoco"; + changelog = "https://www.jacoco.org/jacoco/trunk/doc/changes.html"; license = licenses.epl20; platforms = platforms.all; maintainers = with maintainers; [ figsoda ];