about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-02-03 10:53:57 +0000
committertomberek <tomberek@users.noreply.github.com>2021-03-03 00:59:36 -0500
commit78e35586d3d8933fa20cafad81ff27935cf80dfa (patch)
tree3b6340da50b4507cbfd196c9926313c927b25c14
parentb6b073ae0eac71b2cbf87e82a7baadf11bfb85c5 (diff)
checkstyle: 8.39 -> 8.40
-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 e5325f7da8c77..32d0e9657e328 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 = "8.39";
+  version = "8.40";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-CPPSJVKf01TA89Qk/uyvIU+ejo5JyT4Mc35KKJPv4IE=";
+    sha256 = "sha256-Zw8FfWHMbO+PBED4OPStzqahbJ5jS8Dpahxu6rU/wOQ=";
   };
 
   nativeBuildInputs = [ makeWrapper ];