mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
phpdocumentor: add missing build input
Since 3be507be1e
'php.buildComposerProject' does not provide the 'makeBinaryWrapper'
anymore, causing the build to fail.
This commit is contained in:
parent
b8b3be7098
commit
832bb3df1c
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, php
|
||||
, fetchFromGitHub
|
||||
, makeBinaryWrapper
|
||||
}:
|
||||
|
||||
php.buildComposerProject (finalAttrs: {
|
||||
@ -19,6 +20,8 @@ php.buildComposerProject (finalAttrs: {
|
||||
# Needed because of the unbound version constraint on phpdocumentor/json-path
|
||||
composerStrictValidation = false;
|
||||
|
||||
nativeBuildInputs = [ makeBinaryWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user