2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre }:
|
2009-06-18 13:51:51 +01:00
|
|
|
|
2014-08-29 18:12:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-28 19:06:56 +01:00
|
|
|
version = "8.44";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "checkstyle";
|
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";
|
2021-06-28 19:06:56 +01:00
|
|
|
sha256 = "sha256-tXTU5A4mKQ0DDWCE3VUXB3fbanHyFNSIcTMJ3NRlj6A=";
|
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
|
|
|
|
2019-06-19 16:45:34 +01:00
|
|
|
dontUnpack = true;
|
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
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
2020-03-04 02:05:33 +00:00
|
|
|
homepage = "http://checkstyle.sourceforge.net/";
|
2014-10-26 01:48:34 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2019-06-01 11:25:44 +01:00
|
|
|
platforms = jre.meta.platforms;
|
2009-06-18 13:51:51 +01:00
|
|
|
};
|
|
|
|
}
|