checkstyle: update to 5.7

This commit is contained in:
Mateusz Kowalczyk 2014-08-29 18:12:43 +01:00
parent 3b6f5050a1
commit 4e189f68ab

View File

@ -1,12 +1,12 @@
{stdenv, fetchurl, unzip}: { stdenv, fetchurl }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "checkstyle-5.0"; version = "5.7";
buildInputs = [unzip] ; name = "checkstyle-${version}";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/checkstyle/checkstyle-5.0.zip ; url = "mirror://sourceforge/checkstyle/${version}/${name}-bin.tar.gz";
sha256 = "0972afcxjniz64hlnc89ddnd1d0mcd5hb1sd7lpw5k52h39683nh"; sha256 = "0kzj507ylynq6p7v097bjzsckkjny5i2fxwxyrlwi5samhi2m06x";
}; };
installPhase = '' installPhase = ''
@ -22,6 +22,6 @@ stdenv.mkDerivation {
Conventions, but is highly configurable. Conventions, but is highly configurable.
''; '';
homepage = http://checkstyle.sourceforge.net/; homepage = http://checkstyle.sourceforge.net/;
license = stdenv.lib.licenses.lgpl21;
}; };
} }