2014-08-29 19:12:43 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2009-06-18 14:51:51 +02:00
|
|
|
|
2014-08-29 19:12:43 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-08-17 14:45:10 +02:00
|
|
|
version = "8.12";
|
2014-08-29 19:12:43 +02:00
|
|
|
name = "checkstyle-${version}";
|
2009-06-18 14:51:51 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-07-01 16:38:49 +02:00
|
|
|
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
|
2018-08-17 14:45:10 +02:00
|
|
|
sha256 = "000048flqhkwnjn37bh07wgn6q4m12s3h3p9piqgvxswrjc95x3y";
|
2009-06-18 14:51:51 +02:00
|
|
|
};
|
|
|
|
|
2018-07-01 16:38:49 +02:00
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
2009-06-18 14:51:51 +02:00
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/checkstyle
|
2018-07-01 16:38:49 +02:00
|
|
|
cp $src $out/checkstyle/checkstyle-all.jar
|
2009-06-18 14:51:51 +02:00
|
|
|
'';
|
|
|
|
|
2014-10-26 02:48:34 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 16:22:46 +02: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 14:51:51 +02:00
|
|
|
homepage = http://checkstyle.sourceforge.net/;
|
2014-10-26 02:48:34 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; linux;
|
2009-06-18 14:51:51 +02:00
|
|
|
};
|
|
|
|
}
|