about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-08-02 13:25:21 +0700
committerGitHub <noreply@github.com>2021-08-02 13:25:21 +0700
commitf865d61498cfba80d6f792142581ee91f3b7092a (patch)
tree20f9f59ec3cf89d97e400df4f92d611bdfb2dcd0
parentcff4cc05bc5d6ee4b2adcf927235df79aebdbf35 (diff)
parentb8f14c331176c1fde5740b29fe8a27a2957a7bb4 (diff)
Merge pull request #132376 from r-ryantm/auto-update/checkstyle
checkstyle: 8.44 -> 8.45
-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 4c735de89de98..998dce59a8dab 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.44";
+  version = "8.45";
   pname = "checkstyle";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "sha256-tXTU5A4mKQ0DDWCE3VUXB3fbanHyFNSIcTMJ3NRlj6A=";
+    sha256 = "sha256-XFeufPaMz5rk+Ym0zXFCitoi9+mDs/PZUByIeZrj538=";
   };
 
   nativeBuildInputs = [ makeWrapper ];