nixpkgs/pkgs/by-name/pd/pdepend/package.nix
2023-09-17 18:09:25 +02:00

30 lines
835 B
Nix

{ php, fetchFromGitHub, lib }:
php.buildComposerProject (finalAttrs: {
pname = "pdepend";
version = "2.14.0";
src = fetchFromGitHub {
owner = "pdepend";
repo = "pdepend";
rev = finalAttrs.version;
hash = "sha256-ZmgMuOpUsx5JWTcPRS6qKbTWZvuOrBVOVdPMcvvTV20=";
};
vendorHash = "sha256-MWm8urRB9IujqrIl22x+JFFCRR+nINLQqnHUywT2pi0=";
meta = {
description = "An adaptation of JDepend for PHP";
homepage = "https://github.com/pdepend/pdepend";
license = lib.licenses.bsd3;
longDescription = "
PHP Depend is an adaptation of the established Java
development tool JDepend. This tool shows you the quality
of your design in terms of extensibility, reusability and
maintainability.
";
maintainers = lib.teams.php.members;
platforms = lib.platforms.all;
};
})