build-support/php: prevent the creation of symlinks

Using symbolic links create issues on Darwin, therefore, using `makeWrapper` fix this.
This commit is contained in:
Pol Dellaiera 2023-09-14 21:40:33 +02:00
parent 2cd86bf59a
commit a2f8623363
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA
2 changed files with 5 additions and 4 deletions

View file

@ -106,7 +106,7 @@ composerInstallInstallHook() {
# Create symlinks for the binaries.
jq -r -c 'try .bin[]' composer.json | while read -r bin; do
mkdir -p "$out"/share/php/"${pname}" "$out"/bin
ln -s "$out"/share/php/"${pname}"/"$bin" "$out"/bin/"$(basename "$bin")"
makeWrapper "$out"/share/php/"${pname}"/"$bin" "$out"/bin/"$(basename "$bin")"
done
echo "Finished composerInstallInstallHook"

View file

@ -1,21 +1,22 @@
{ makeSetupHook
, php
, jq
, moreutils
, makeBinaryWrapper
, php
}:
{
composerRepositoryHook = makeSetupHook
{
name = "composer-repository-hook.sh";
propagatedBuildInputs = [ php jq moreutils ];
propagatedBuildInputs = [ jq moreutils php ];
substitutions = { };
} ./composer-repository-hook.sh;
composerInstallHook = makeSetupHook
{
name = "composer-install-hook.sh";
propagatedBuildInputs = [ php jq moreutils ];
propagatedBuildInputs = [ jq makeBinaryWrapper moreutils php ];
substitutions = { };
} ./composer-install-hook.sh;
}