checkstyle: 9.2.1 -> 9.3

This commit is contained in:
R. Ryantm 2022-02-10 22:29:02 +00:00
parent 5199bf37eb
commit 6f1ed23438

View file

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
version = "9.2.1";
version = "9.3";
pname = "checkstyle";
src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "sha256-EqZt/Er9A02ggThXF8y5wCjUgTE8mHPBLs9/XNsJ2vY=";
sha256 = "sha256-Aq0zB+RgWafE+K9sX2H0d7xf2RDlavsUXEWQTJXSE6w=";
};
nativeBuildInputs = [ makeWrapper ];