arcanist: Fix this because how did it work
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
8155e5d119
commit
3f6197cafe
|
@ -22,16 +22,16 @@ stdenv.mkDerivation rec {
|
||||||
unpackPhase = "true";
|
unpackPhase = "true";
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
ORIG=`pwd`
|
ORIG=`pwd`
|
||||||
chmod +w -R ${libphutil}
|
cp -R ${libphutil} libphutil
|
||||||
cd ${libphutil}/support/xhpast
|
cp -R ${arcanist} arcanist
|
||||||
ls
|
cd libphutil/support/xhpast
|
||||||
make clean all install
|
make clean all install
|
||||||
cd $ORIG
|
cd $ORIG
|
||||||
'';
|
'';
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin $out/libexec
|
mkdir -p $out/bin $out/libexec
|
||||||
cp -R ${libphutil} $out/libexec/libphutil
|
cp -R libphutil $out/libexec/libphutil
|
||||||
cp -R ${arcanist} $out/libexec/arcanist
|
cp -R arcanist $out/libexec/arcanist
|
||||||
|
|
||||||
ln -s $out/libexec/arcanist/bin/arc $out/bin
|
ln -s $out/libexec/arcanist/bin/arc $out/bin
|
||||||
wrapProgram $out/bin/arc \
|
wrapProgram $out/bin/arc \
|
||||||
|
|
Loading…
Reference in New Issue