2018-08-20 15:41:49 +02:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
2009-06-18 14:51:51 +02:00
|
|
|
|
2014-08-29 19:12:43 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-01 08:31:26 +01:00
|
|
|
version = "8.37";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "checkstyle";
|
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";
|
2020-11-01 08:31:26 +01:00
|
|
|
sha256 = "1xhindlq46d5878mkbxc3f6fx6i00kqbj2aymlg0022v9h6r1p9p";
|
2009-06-18 14:51:51 +02:00
|
|
|
};
|
|
|
|
|
2018-11-10 15:42:24 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ jre ];
|
2018-08-20 15:41:49 +02:00
|
|
|
|
2019-06-19 17:45:34 +02:00
|
|
|
dontUnpack = true;
|
2018-07-01 16:38:49 +02:00
|
|
|
|
2009-06-18 14:51:51 +02:00
|
|
|
installPhase = ''
|
2018-08-20 15:41:49 +02:00
|
|
|
runHook preInstall
|
|
|
|
install -D $src $out/checkstyle/checkstyle-all.jar
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/checkstyle \
|
|
|
|
--add-flags "-jar $out/checkstyle/checkstyle-all.jar"
|
|
|
|
runHook postInstall
|
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.
|
|
|
|
'';
|
2020-03-04 03:05:33 +01:00
|
|
|
homepage = "http://checkstyle.sourceforge.net/";
|
2014-10-26 02:48:34 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2019-06-01 12:25:44 +02:00
|
|
|
platforms = jre.meta.platforms;
|
2009-06-18 14:51:51 +02:00
|
|
|
};
|
|
|
|
}
|