about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-09-01 13:00:54 +0200
committerGitHub <noreply@github.com>2022-09-01 13:00:54 +0200
commitaf3da5cc301cbe82627d406993c8c94702d23509 (patch)
tree622b38719c9cee658e5cabba7b43e30da6a27247
parent18c826b8df442eec3bc4b6632daed66143ebc55c (diff)
parent1001dc5d8b1067f0861c414c6fc7948ac49e8e70 (diff)
Merge pull request #188825 from r-ryantm/auto-update/checkstyle
checkstyle: 10.3.2 -> 10.3.3
-rw-r--r--pkgs/development/tools/analysis/checkstyle/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix
index 0fe62f5c65251..3aacacbb5175b 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenv, fetchurl, makeWrapper, jre }:
 
 stdenv.mkDerivation rec {
-  version = "10.3.2";
+  version = "10.3.3";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-VrTjpw/bT5n/ydUt9sK/cGqSi9gZJq1TsRupfm7RS1M=";
+    sha256 = "sha256-J4Ty6nblCylRfyHcxqDXJ6LAh2g7+cD+uNorW1EmwYc=";
   };
 
   nativeBuildInputs = [ makeWrapper ];