mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-19 20:41:54 +03:00
php: builder link bins to $out/bin
This commit is contained in:
parent
b71575e8d5
commit
4572d793ef
@ -125,7 +125,14 @@
|
||||
popd
|
||||
'';
|
||||
installPhase = ''
|
||||
true
|
||||
if [ -d $PKG_OUT/bin ]
|
||||
then
|
||||
mkdir -p $out/bin
|
||||
for bin in $(ls $PKG_OUT/bin)
|
||||
do
|
||||
ln -s $PKG_OUT/bin/$bin $out/bin/$bin
|
||||
done
|
||||
fi
|
||||
'';
|
||||
};
|
||||
in
|
||||
|
Loading…
Reference in New Issue
Block a user