2019-06-05 07:10:59 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
2009-06-18 13:51:51 +01:00
|
|
|
|
2015-03-12 20:19:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-05 07:10:59 +01:00
|
|
|
pname = "pmd";
|
2019-08-05 11:21:43 +01:00
|
|
|
version = "6.17.0";
|
2015-03-12 20:19:03 +00:00
|
|
|
|
2019-06-05 07:10:59 +01:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2009-06-18 13:51:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-03-12 20:19:03 +00:00
|
|
|
url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip";
|
2019-08-05 11:21:43 +01:00
|
|
|
sha256 = "0000w28dg5z8gs7cxhx7d0fv10ry0yxamk5my28ncqqsg7a4qy8w";
|
2009-06-18 13:51:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-06-05 07:10:59 +01:00
|
|
|
runHook preInstall
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out
|
2019-06-05 07:10:59 +01:00
|
|
|
cp -R {bin,lib} $out
|
|
|
|
runHook postInstall
|
2009-06-18 13:51:51 +01:00
|
|
|
'';
|
|
|
|
|
2018-10-11 12:20:01 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-11-09 12:37:30 +00:00
|
|
|
description = "An extensible cross-language static code analyzer";
|
2019-06-05 07:10:59 +01:00
|
|
|
homepage = "https://pmd.github.io/";
|
|
|
|
changelog = "https://pmd.github.io/pmd-${version}/pmd_release_notes.html";
|
2018-10-11 12:20:01 +01:00
|
|
|
platforms = platforms.unix;
|
2019-06-05 07:10:59 +01:00
|
|
|
license = with licenses; [ bsdOriginal asl20 lgpl3Plus ];
|
2009-06-18 13:51:51 +01:00
|
|
|
};
|
|
|
|
}
|