nixpkgs/pkgs/by-name/pd/pdepend/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
954 B
Nix
Raw Normal View History

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