2014-08-29 18:12:43 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2009-06-18 13:51:51 +01:00
|
|
|
|
2014-08-29 18:12:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-04-06 19:51:51 +01:00
|
|
|
version = "8.9";
|
2014-08-29 18:12:43 +01:00
|
|
|
name = "checkstyle-${version}";
|
2009-06-18 13:51:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-01 19:21:33 +01:00
|
|
|
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
|
2018-04-06 19:51:51 +01:00
|
|
|
sha256 = "058lffmlzw7nqz5z89m2k640q7ffz6dz008bddvjsgpxbrdb89cd";
|
2009-06-18 13:51:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/checkstyle
|
2009-06-18 13:51:51 +01:00
|
|
|
cp -R * $out/checkstyle
|
|
|
|
'';
|
|
|
|
|
2014-10-26 01:48:34 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 15:22:46 +01: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 13:51:51 +01:00
|
|
|
homepage = http://checkstyle.sourceforge.net/;
|
2014-10-26 01:48:34 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2009-06-18 13:51:51 +01:00
|
|
|
};
|
|
|
|
}
|