2018-08-20 14:41:49 +01:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
2009-06-18 13:51:51 +01:00
|
|
|
|
2014-08-29 18:12:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-04 01:17:42 +00:00
|
|
|
version = "8.16";
|
2014-08-29 18:12:43 +01:00
|
|
|
name = "checkstyle-${version}";
|
2009-06-18 13:51:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-07-01 15:38:49 +01:00
|
|
|
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
|
2019-01-04 01:17:42 +00:00
|
|
|
sha256 = "1044imm1pmn4fb0bzg4k44qm1hwwsyf7l7lbnlrznbln7ymdy5ki";
|
2009-06-18 13:51:51 +01:00
|
|
|
};
|
|
|
|
|
2018-11-10 14:42:24 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ jre ];
|
2018-08-20 14:41:49 +01:00
|
|
|
|
|
|
|
unpackPhase = ":";
|
2018-07-01 15:38:49 +01:00
|
|
|
|
2009-06-18 13:51:51 +01:00
|
|
|
installPhase = ''
|
2018-08-20 14:41:49 +01: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 13:51:51 +01:00
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|