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