summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-07 23:08:48 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-03-07 23:08:48 -0800
commita1bf5bd907cc6f4568f0c17383d255952dddcc7d (patch)
tree9d05af873c0395dab69cf0ff5ecc828220774d85 /pkgs
parentf93f9f6025f703978423c6d7d9da59c27e120487 (diff)
downloadnixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.tar
nixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.tar.gz
nixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.tar.bz2
nixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.tar.lz
nixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.tar.xz
nixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.tar.zst
nixpkgs-a1bf5bd907cc6f4568f0c17383d255952dddcc7d.zip
checkstyle: 6.19 -> 8.8
Semi-automatic update. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 8.8 with grep in /nix/store/09g6vrj90r6lbwj2hwb319sgd3ppp14k-checkstyle-8.8
- found 8.8 in filename of file in /nix/store/09g6vrj90r6lbwj2hwb319sgd3ppp14k-checkstyle-8.8
Diffstat (limited to 'pkgs')
-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 91037588552..6043e2d289d 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  version = "6.19";
+  version = "8.8";
   name = "checkstyle-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
-    sha256 = "0x899i5yamwyhv7wgii80fv5hl8bdq0b8wlx1f789l85ik8rjwk9";
+    sha256 = "0yawd6mbz6cqj0qlrh01vy33p30f4s3pfrvsxwg5l11p416zzrz4";
   };
 
   installPhase = ''