2014-08-29 21:12:43 +04:00
|
|
|
{ stdenv, fetchurl }:
|
2009-06-18 16:51:51 +04:00
|
|
|
|
2014-08-29 21:12:43 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-07 19:16:14 +03:00
|
|
|
version = "6.9";
|
2014-08-29 21:12:43 +04:00
|
|
|
name = "checkstyle-${version}";
|
2009-06-18 16:51:51 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-01 21:21:33 +03:00
|
|
|
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
|
2015-08-07 19:16:14 +03:00
|
|
|
sha256 = "122lzqai6nb1wx9z9hc92sld9ghrynywf4f4lz6wk50kywcp0p70";
|
2009-06-18 16:51:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-19 00:16:00 +04:00
|
|
|
mkdir -p $out/checkstyle
|
2009-06-18 16:51:51 +04:00
|
|
|
cp -R * $out/checkstyle
|
|
|
|
'';
|
|
|
|
|
2014-10-26 03:48:34 +03:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 18:22:46 +04:00
|
|
|
description = "Checks Java source against a coding standard";
|
|
|
|
longDescription = ''
|
|
|
|
checkstyle is a development tool to help programmers write Java code that
|
|
|
|
adheres to a coding standard. By default it supports the Sun Code
|
|
|
|
Conventions, but is highly configurable.
|
|
|
|
'';
|
2009-06-18 16:51:51 +04:00
|
|
|
homepage = http://checkstyle.sourceforge.net/;
|
2014-10-26 03:48:34 +03:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2009-06-18 16:51:51 +04:00
|
|
|
};
|
|
|
|
}
|