Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 28 lines 759 B view raw
1{ 2 fetchFromGitHub, 3 lib, 4 php, 5}: 6 7php.buildComposerProject (finalAttrs: { 8 pname = "php-parallel-lint"; 9 version = "1.3.2.999"; 10 11 src = fetchFromGitHub { 12 owner = "php-parallel-lint"; 13 repo = "PHP-Parallel-Lint"; 14 rev = "539292fea03d718cc86e7137ad72ea35b694f2bf"; 15 hash = "sha256-VIBuS4PwRt20Ic5gYAXTv8p/5Nq/0B3VwMcp9zKbu5U="; 16 }; 17 18 composerLock = ./composer.lock; 19 vendorHash = "sha256-PHQ0N1eFCM4s/aPVpTsyZN5gnQpNe9Wfs6CG2RNxxbk="; 20 21 meta = { 22 description = "Tool to check syntax of PHP files faster than serial check with fancier output"; 23 homepage = "https://github.com/php-parallel-lint/PHP-Parallel-Lint"; 24 license = lib.licenses.bsd2; 25 mainProgram = "parallel-lint"; 26 maintainers = lib.teams.php.members; 27 }; 28})