about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-01 23:00:13 +0200
committerGitHub <noreply@github.com>2023-09-01 23:00:13 +0200
commit353b0b32e01af3778aaf7b8f75ba77ff02ebdce2 (patch)
treea374f231c86cccefa928b30bfa5aad707b2545a7 /pkgs/development/tools/analysis
parentb6f6c25cd2298b1f38f134a640ed51efbee07693 (diff)
parent86cf0209266f4adb2c3a5cec6933efcd696ec9f2 (diff)
downloadnixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.tar
nixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.tar.gz
nixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.tar.bz2
nixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.tar.lz
nixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.tar.xz
nixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.tar.zst
nixlib-353b0b32e01af3778aaf7b8f75ba77ff02ebdce2.zip
Merge pull request #252660 from r-ryantm/auto-update/checkstyle
checkstyle: 10.12.2 -> 10.12.3
Diffstat (limited to 'pkgs/development/tools/analysis')
-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 c19c59d730b1..f8bc11d63a6a 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 ];