2024-02-17 22:01:19 +00:00
|
|
|
{ php
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
|
|
|
}:
|
2023-09-17 13:32:45 +00:00
|
|
|
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
|
|
pname = "pdepend";
|
2024-02-17 22:01:19 +00:00
|
|
|
version = "2.16.2";
|
2023-09-17 13:32:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pdepend";
|
|
|
|
repo = "pdepend";
|
|
|
|
rev = finalAttrs.version;
|
2024-02-17 22:01:19 +00:00
|
|
|
hash = "sha256-2Ruubcm9IWZYu2LGeGeKm1tmHca0P5xlKYkuBCCV9ag=";
|
2023-09-17 13:32:45 +00:00
|
|
|
};
|
|
|
|
|
2023-10-04 13:03:31 +00:00
|
|
|
composerLock = ./composer.lock;
|
2024-02-17 22:01:19 +00:00
|
|
|
vendorHash = "sha256-Rvvy6MI0q+T2W7xzf2UqWIbsqgrWhgqVnzhphQ3iw9g=";
|
2023-09-17 13:32:45 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-02-17 22:01:19 +00:00
|
|
|
changelog = "https://github.com/pdepend/pdepend/releases/tag/${finalAttrs.version}";
|
2023-09-17 13:32:45 +00:00
|
|
|
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.
|
|
|
|
";
|
2024-02-17 22:01:19 +00:00
|
|
|
mainProgram = "pdepend";
|
2023-09-17 13:32:45 +00:00
|
|
|
maintainers = lib.teams.php.members;
|
|
|
|
};
|
|
|
|
})
|