nixpkgs/pkgs/development/tools/analysis/checkstyle/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2018-08-20 14:41:49 +01:00
{ stdenv, fetchurl, makeWrapper, jre }:
2014-08-29 18:12:43 +01:00
stdenv.mkDerivation rec {
version = "8.16";
2014-08-29 18:12:43 +01:00
name = "checkstyle-${version}";
src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "1044imm1pmn4fb0bzg4k44qm1hwwsyf7l7lbnlrznbln7ymdy5ki";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
2018-08-20 14:41:49 +01:00
unpackPhase = ":";
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
'';
meta = with stdenv.lib; {
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.
'';
homepage = http://checkstyle.sourceforge.net/;
license = licenses.lgpl21;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}