chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pd / pdepend / package.nix
blobca92bb0e10d714e067f167dfb69fd2266d5fbdf8
1 { php
2 , fetchFromGitHub
3 , lib
4 }:
6 php.buildComposerProject (finalAttrs: {
7   pname = "pdepend";
8   version = "2.16.2";
10   src = fetchFromGitHub {
11     owner = "pdepend";
12     repo = "pdepend";
13     rev = finalAttrs.version;
14     hash = "sha256-2Ruubcm9IWZYu2LGeGeKm1tmHca0P5xlKYkuBCCV9ag=";
15   };
17   composerLock = ./composer.lock;
18   vendorHash = "sha256-Rvvy6MI0q+T2W7xzf2UqWIbsqgrWhgqVnzhphQ3iw9g=";
20   meta = {
21     changelog = "https://github.com/pdepend/pdepend/releases/tag/${finalAttrs.version}";
22     description = "Adaptation of JDepend for PHP";
23     homepage = "https://github.com/pdepend/pdepend";
24     license = lib.licenses.bsd3;
25     longDescription = "
26       PHP Depend is an adaptation of the established Java
27       development tool JDepend. This tool shows you the quality
28       of your design in terms of extensibility, reusability and
29       maintainability.
30     ";
31     mainProgram = "pdepend";
32     maintainers = lib.teams.php.members;
33   };