summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/checkstyle
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-09-01 00:59:07 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-09-01 00:59:07 +0000
commit86cf0209266f4adb2c3a5cec6933efcd696ec9f2 (patch)
treede986b5716c0ba48b20441d917d1d2d01d2da7b1 /pkgs/development/tools/analysis/checkstyle
parentc7bb13c661e20f49cbe3af71e61e66968ec803bf (diff)
checkstyle: 10.12.2 -> 10.12.3
Diffstat (limited to 'pkgs/development/tools/analysis/checkstyle')
-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 c19c59d730b17..f8bc11d63a6ac 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }:
 
 stdenvNoCC.mkDerivation rec {
-  version = "10.12.2";
+  version = "10.12.3";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-0vv04vPROCDjFo/mqkH4GXKEB8PvbU7qryGu+mzmShM=";
+    sha256 = "sha256-drJO3sZlh2G9f80cvPD41YjhHZt74lmV9bSIhUDrTKo=";
   };
 
   nativeBuildInputs = [ makeBinaryWrapper ];