2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip, makeWrapper, openjdk }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pmd";
|
2022-09-09 14:08:57 +00:00
|
|
|
version = "6.49.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-08-12 12:06:08 +00:00
|
|
|
url = "https://github.com/pmd/pmd/releases/download/pmd_releases/${version}/pmd-bin-${version}.zip";
|
2022-09-09 14:08:57 +00:00
|
|
|
hash = "sha256-dEKfQIdWkx6XAKnEBHaVI0l729Xj2RnjoHl59t0Kal0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
nativeBuildInputs = [ unzip makeWrapper ];
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
install -Dm755 bin/run.sh $out/libexec/pmd
|
|
|
|
install -Dm644 lib/*.jar -t $out/lib/pmd
|
|
|
|
|
|
|
|
wrapProgram $out/libexec/pmd \
|
|
|
|
--prefix PATH : ${openjdk.jre}/bin \
|
|
|
|
--set LIB_DIR $out/lib/pmd
|
|
|
|
|
|
|
|
for app in pmd cpd cpdgui designer bgastviewer designerold ast-dump; do
|
|
|
|
makeWrapper $out/libexec/pmd $out/bin/$app --argv0 $app --add-flags $app
|
|
|
|
done
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "An extensible cross-language static code analyzer";
|
|
|
|
homepage = "https://pmd.github.io/";
|
|
|
|
changelog = "https://pmd.github.io/pmd-${version}/pmd_release_notes.html";
|
|
|
|
platforms = platforms.unix;
|
2022-02-20 05:27:41 +00:00
|
|
|
license = with licenses; [ bsdOriginal asl20 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|