a1bf5bd907
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 8.8 with grep in /nix/store/09g6vrj90r6lbwj2hwb319sgd3ppp14k-checkstyle-8.8 - found 8.8 in filename of file in /nix/store/09g6vrj90r6lbwj2hwb319sgd3ppp14k-checkstyle-8.8
29 lines
845 B
Nix
29 lines
845 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "8.8";
|
|
name = "checkstyle-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
|
|
sha256 = "0yawd6mbz6cqj0qlrh01vy33p30f4s3pfrvsxwg5l11p416zzrz4";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|