nixpkgs/pkgs/development/tools/analysis/checkstyle/default.nix
2018-04-06 20:51:51 +02:00

30 lines
845 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "8.9";
name = "checkstyle-${version}";
src = fetchurl {
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
sha256 = "058lffmlzw7nqz5z89m2k640q7ffz6dz008bddvjsgpxbrdb89cd";
};
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;
};
}