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

29 lines
806 B
Nix
Raw Normal View History

2014-08-29 21:12:43 +04:00
{ stdenv, fetchurl }:
2014-08-29 21:12:43 +04:00
stdenv.mkDerivation rec {
2015-08-07 19:16:14 +03:00
version = "6.9";
2014-08-29 21:12:43 +04:00
name = "checkstyle-${version}";
src = fetchurl {
2015-07-01 21:21:33 +03:00
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
2015-08-07 19:16:14 +03:00
sha256 = "122lzqai6nb1wx9z9hc92sld9ghrynywf4f4lz6wk50kywcp0p70";
};
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 ];
};
}