Merge pull request #81673 from r-ryantm/auto-update/checkstyle

checkstyle: 8.29 -> 8.30

authored by Mario Rodas and committed by GitHub 167bec98 9a97f6a6

+3 -3
+3 -3
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, jre }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "8.29"; 4 + version = "8.30"; 5 5 pname = "checkstyle"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "1rbipf4031inv34ci0rczz7dipi3b12cpn45h949i095gdh37pgh"; 9 + sha256 = "1wsgpfdqasfz6chhy0w5pdjm4by6ih2g0l44lxwks9kik2lrs4av"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; ··· 29 29 adheres to a coding standard. By default it supports the Sun Code 30 30 Conventions, but is highly configurable. 31 31 ''; 32 - homepage = http://checkstyle.sourceforge.net/; 32 + homepage = "http://checkstyle.sourceforge.net/"; 33 33 license = licenses.lgpl21; 34 34 maintainers = with maintainers; [ pSub ]; 35 35 platforms = jre.meta.platforms;