mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
951 B
Nix
34 lines
951 B
Nix
{ php
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "pdepend";
|
|
version = "2.16.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pdepend";
|
|
repo = "pdepend";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-2Ruubcm9IWZYu2LGeGeKm1tmHca0P5xlKYkuBCCV9ag=";
|
|
};
|
|
|
|
composerLock = ./composer.lock;
|
|
vendorHash = "sha256-Rvvy6MI0q+T2W7xzf2UqWIbsqgrWhgqVnzhphQ3iw9g=";
|
|
|
|
meta = {
|
|
changelog = "https://github.com/pdepend/pdepend/releases/tag/${finalAttrs.version}";
|
|
description = "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";
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
})
|