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

32 lines
957 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 {
version = "8.12";
2014-08-29 19:12:43 +02:00
name = "checkstyle-${version}";
src = fetchurl {
url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar";
sha256 = "000048flqhkwnjn37bh07wgn6q4m12s3h3p9piqgvxswrjc95x3y";
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/checkstyle
cp $src $out/checkstyle/checkstyle-all.jar
'';
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;
};
}