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

29 lines
819 B
Nix
Raw Normal View History

2014-08-29 19:12:43 +02:00
{ stdenv, fetchurl }:
2014-08-29 19:12:43 +02:00
stdenv.mkDerivation rec {
2014-11-28 11:07:09 +01:00
version = "6.1.1";
2014-08-29 19:12:43 +02:00
name = "checkstyle-${version}";
src = fetchurl {
2014-08-29 19:12:43 +02:00
url = "mirror://sourceforge/checkstyle/${version}/${name}-bin.tar.gz";
2014-11-28 11:07:09 +01:00
sha256 = "07qickjgayakzfq54nwb9rpxydjkymxw6lnhzxri36mxspq9pzda";
};
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 ];
};
}