about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/checkstyle
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2019-03-01 19:24:04 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2019-03-01 19:24:22 +0100
commitbb921f5169393b5675de410e07f095cb552fc12f (patch)
treee9ad797f1af7ee6c386ad55ed6b1b252ed28c95a /pkgs/development/tools/analysis/checkstyle
parent81bf897e294a27b59b73f6a76942b1405923e99e (diff)
downloadnixlib-bb921f5169393b5675de410e07f095cb552fc12f.tar
nixlib-bb921f5169393b5675de410e07f095cb552fc12f.tar.gz
nixlib-bb921f5169393b5675de410e07f095cb552fc12f.tar.bz2
nixlib-bb921f5169393b5675de410e07f095cb552fc12f.tar.lz
nixlib-bb921f5169393b5675de410e07f095cb552fc12f.tar.xz
nixlib-bb921f5169393b5675de410e07f095cb552fc12f.tar.zst
nixlib-bb921f5169393b5675de410e07f095cb552fc12f.zip
checkstyle: 8.17 -> 8.18
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 53f46e372ef6..604e44cf7b14 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.17";
+  version = "8.18";
   name = "checkstyle-${version}";
 
   src = fetchurl {
     url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
-    sha256 = "10i285kzbma9pny0vlm8wglxsbqliqrhig6n9rj2nv13x5i53ifj";
+    sha256 = "1l9dqihl73yi3k27j2a1k87gqzs64z0mpwxj6w68ipvxf4rg63x5";
   };
 
   nativeBuildInputs = [ makeWrapper ];