3d31818f1a
These variables have bad names that doesn't really make full sense
34 lines
845 B
Nix
34 lines
845 B
Nix
{ mkDerivation, fetchurl, pkgs, lib, php }:
|
|
let
|
|
pname = "phpmd";
|
|
version = "2.8.2";
|
|
|
|
isPhp74 = lib.versionAtLeast php.version "7.4";
|
|
in
|
|
mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = pkgs.fetchurl {
|
|
url = "https://github.com/phpmd/phpmd/releases/download/${version}/phpmd.phar";
|
|
sha256 = "1i8qgzxniw5d8zjpypalm384y7qfczapfq70xmg129laq6xiqlqb";
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
install -D $src $out/libexec/phpmd/phpmd.phar
|
|
makeWrapper ${php}/bin/php $out/bin/phpmd \
|
|
--add-flags "$out/libexec/phpmd/phpmd.phar"
|
|
'';
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "PHP code quality analyzer";
|
|
license = licenses.bsd3;
|
|
homepage = "https://phpmd.org/";
|
|
maintainers = teams.php.members;
|
|
broken = !isPhp74;
|
|
};
|
|
}
|