bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
28 lines
737 B
Nix
28 lines
737 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
php,
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "php-parallel-lint";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "php-parallel-lint";
|
|
repo = "PHP-Parallel-Lint";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-g5e/yfvfq55MQDux3JRDvhaYEay68Q4u1VfIwDRgv7I=";
|
|
};
|
|
|
|
composerLock = ./composer.lock;
|
|
vendorHash = "sha256-NZLGeX1i+E621UGYeWn5tKufDbCLv4iD1VXJcnhfleY=";
|
|
|
|
meta = {
|
|
description = "Tool to check syntax of PHP files faster than serial check with fancier output";
|
|
homepage = "https://github.com/php-parallel-lint/PHP-Parallel-Lint";
|
|
license = lib.licenses.bsd2;
|
|
mainProgram = "parallel-lint";
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
})
|