3
0
Fork 0
forked from mirrors/nixpkgs

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
75bb9aeda42b39a417031d80b47500d8a3b4c6405bb9ae.

This fixes #199994.
This commit is contained in:
Lucas Hoffmann 2022-11-07 17:39:27 +01:00
parent f9fcccaaf0
commit 4493598d4b

View file

@ -22,7 +22,7 @@ mkDerivation {
buildPhase = ''
runHook preBuild
composer dump-autoload
box build
box compile
runHook postBuild
'';