about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-06 08:34:33 -0500
committerGitHub <noreply@github.com>2020-06-06 08:34:33 -0500
commite4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e (patch)
tree880890a0bbcf5f22f712bb9eac00e205288f2796 /pkgs/development/tools
parent29178a28602a28d750efaaf606e297fc865e89b5 (diff)
parent67814af731eeb383f68c46012d965eef7efd1bc5 (diff)
downloadnixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.tar
nixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.tar.gz
nixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.tar.bz2
nixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.tar.lz
nixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.tar.xz
nixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.tar.zst
nixlib-e4e61f66d3f0cfe8d0002bbdfc6ba5135538f79e.zip
Merge pull request #89595 from r-ryantm/auto-update/checkstyle
checkstyle: 8.32 -> 8.33
Diffstat (limited to 'pkgs/development/tools')
-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 3367588bb3b9..288482ab6f7d 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper, jre }:
 
 stdenv.mkDerivation rec {
-  version = "8.32";
+  version = "8.33";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "18ahdphxfcfi2vghl11kmj089hyh9iawll3cwxrqsdqak0748ijs";
+    sha256 = "03innxi9f44z2c785a94n3i0adm6mn3jjgqlvgx46nmigvw41mz6";
   };
 
   nativeBuildInputs = [ makeWrapper ];