2022-11-04T00:15:27 checkstyle 10.3.4 -> 10.4 https://repology.org/metapackage/checkstyle/versions 2022-11-04T00:15:30 attrpath: checkstyle 2022-11-04T00:15:30 Checking auto update branch... 2022-11-04T00:15:30 No auto update branch exists 2022-11-04T00:15:30 Old version 10.3.4" not present in master derivation file with contents: { lib, stdenv, fetchurl, makeWrapper, jre }: stdenv.mkDerivation rec { version = "10.4"; pname = "checkstyle"; src = fetchurl { url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; sha256 = "sha256-x/13rqb3NOP4ML2HoddkmRrEwBAsG97Z2iLLoJCu2PQ="; }; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ jre ]; dontUnpack = true; installPhase = '' runHook preInstall install -D $src $out/checkstyle/checkstyle-all.jar makeWrapper ${jre}/bin/java $out/bin/checkstyle \ --add-flags "-jar $out/checkstyle/checkstyle-all.jar" runHook postInstall ''; meta = with lib; { description = "Checks Java source against a coding standard"; longDescription = '' checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Sun Code Conventions, but is highly configurable. ''; homepage = "http://checkstyle.sourceforge.net/"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.lgpl21; maintainers = with maintainers; [ pSub ]; platforms = jre.meta.platforms; }; }