about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2024-05-27 10:05:07 +0200
committerGitHub <noreply@github.com>2024-05-27 10:05:07 +0200
commit720438b7e2ffd0d9b36f280b1c5c5c33b857a69c (patch)
tree693dfa4c7b2323e64e0a1a0245316d91ba271afd /pkgs
parentdf548c62c92ab4dd1e223c711be6f210f33f15e4 (diff)
parent3097e8818d51075b8364545bd09054a124cf95a3 (diff)
Merge pull request #314989 from r-ryantm/auto-update/checkstyle
checkstyle: 10.16.0 -> 10.17.0
Diffstat (limited to 'pkgs')
-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 1565d7bdc546f..24b8e1715fc45 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.16.0";
+  version = "10.17.0";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-0Hmg7WnLAGy9YOipW7Oe6KQDxRiRqZ5eI3bKQGU0aQQ=";
+    sha256 = "sha256-UcNNc4UgwTidcZmKmrDm2r4NfPJiFJ8+AacpRJYGLkI=";
   };
 
   nativeBuildInputs = [ makeBinaryWrapper ];