30 lines
846 B
Nix
30 lines
846 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.19";
|
|
name = "checkstyle-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
|
|
sha256 = "0x899i5yamwyhv7wgii80fv5hl8bdq0b8wlx1f789l85ik8rjwk9";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/checkstyle
|
|
cp -R * $out/checkstyle
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|