mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
29 lines
819 B
Nix
29 lines
819 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.1.1";
|
|
name = "checkstyle-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/checkstyle/${version}/${name}-bin.tar.gz";
|
|
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 ];
|
|
};
|
|
}
|