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.

31 lines
869 B
Nix
Raw Normal View History

2023-09-17 13:32:45 +00:00
{ php, fetchFromGitHub, lib }:
php.buildComposerProject (finalAttrs: {
pname = "pdepend";
2023-10-04 13:03:31 +00:00
version = "2.15.1";
2023-09-17 13:32:45 +00:00
src = fetchFromGitHub {
owner = "pdepend";
repo = "pdepend";
rev = finalAttrs.version;
2023-10-04 13:03:31 +00:00
hash = "sha256-tVWOR0rKMnQDeHk3MHhEVOjn+dSpoMx+Ln+AwFRMwYs=";
2023-09-17 13:32:45 +00:00
};
2023-10-04 13:03:31 +00:00
composerLock = ./composer.lock;
2023-09-17 13:32:45 +00:00
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;
};
})