nixpkgs/pkgs/development/tools/analysis/checkstyle/default.nix
R. RyanTM 6573f3a60b checkstyle: 8.11 -> 8.12
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/checkstyle/versions.
2018-08-17 05:45:10 -07:00

31 lines
957 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "8.12";
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;
};
}