php.packages.php-parallel-lint: fix build

The "build" subcommand of box was replaced by "compile" in version 4.0:
https://github.com/box-project/box/blob/master/UPGRADE.md#from-3x-to-4x
This broke the build of php-parallel-lint since
75bb9aeda4.

This fixes #199994.
This commit is contained in:
Lucas Hoffmann
2022-11-07 17:48:31 +01:00
parent f9fcccaaf0
commit 4493598d4b
@@ -22,7 +22,7 @@ mkDerivation {
buildPhase = ''
runHook preBuild
composer dump-autoload
box build
box compile
runHook postBuild
'';