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-02-02 17:05:00 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-02-02 17:05:00 +0000
commitb7d93574d64db922b010fd41725241f7fa9c08d9 (patch)
treea9e22373956a3f240a10212e084a98e92546fe0b /pkgs/development/tools/analysis/checkstyle
parentdc109a3192fe7fd8c3c4c447cdbf50d5a518271f (diff)
checkstyle: 10.6.0 -> 10.7.0
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 8c8b0eb29ad93..cd2843b48cb41 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.6.0";
+  version = "10.7.0";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-ghGrRu7a9OUVti6P4QRrGFSmQqX8XCfn7aBHR4Q7RCI=";
+    sha256 = "sha256-JJGAnja/ONuUUTbLlmk/BrGa0NwJH+EfFn1yL5SvrEw=";
   };
 
   nativeBuildInputs = [ makeWrapper ];