Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

checkstyle: 10.10.0 -> 10.11.0

+2 -2
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, jre }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "10.10.0"; 4 + version = "10.11.0"; 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 = "sha256-L9ww8vVSkVQc/2utpMYiPEbbS9l2WzR9HEKmok9R7UI="; 9 + sha256 = "sha256-Fw8sG3iAnFXbdzGgbDJEoGGGdd+dSxCrS4KTLunEyjA="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];