2f612756f0
With recent work done on the PHP packaging, the PHP executable is by default a wrapper script. Darwin doesn't like scripts in the shebang of another script, so we have to wrap arcanist, feeding the script as an argument to PHP instead. See #86881 and #23018.
61 lines
1.7 KiB
Nix
61 lines
1.7 KiB
Nix
{ stdenv, fetchFromGitHub, php, flex, makeWrapper }:
|
|
|
|
let
|
|
libphutil = fetchFromGitHub {
|
|
owner = "phacility";
|
|
repo = "libphutil";
|
|
rev = "cc2a3dbf590389400da55563cb6993f321ec6d73";
|
|
sha256 = "1k7sr3racwz845i7r5kdwvgqrz8gldz07pxj3yw77s58rqbix3ad";
|
|
};
|
|
arcanist = fetchFromGitHub {
|
|
owner = "phacility";
|
|
repo = "arcanist";
|
|
rev = "21a1828ea06cf031e93082db8664d73efc88290a";
|
|
sha256 = "05rq9l9z7446ks270viay57r5ibx702b5bnlf4ck529zc4abympx";
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "arcanist";
|
|
version = "20200127";
|
|
|
|
src = [ arcanist libphutil ];
|
|
buildInputs = [ php makeWrapper flex ];
|
|
|
|
unpackPhase = ''
|
|
cp -aR ${libphutil} libphutil
|
|
cp -aR ${arcanist} arcanist
|
|
chmod +w -R libphutil arcanist
|
|
'';
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isAarch64 ''
|
|
substituteInPlace libphutil/support/xhpast/Makefile \
|
|
--replace "-minline-all-stringops" ""
|
|
'';
|
|
|
|
buildPhase = ''
|
|
(
|
|
cd libphutil/support/xhpast
|
|
make clean all install
|
|
)
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/libexec
|
|
cp -R libphutil $out/libexec/libphutil
|
|
cp -R arcanist $out/libexec/arcanist
|
|
${if stdenv.isDarwin then ''
|
|
echo "#! $shell -e" > $out/bin/arc
|
|
echo "exec ${php}/bin/php $out/libexec/arcanist/scripts/arcanist.php "'"$@"' >> $out/bin/arc
|
|
chmod +x $out/bin/arc''
|
|
else ''
|
|
ln -s $out/libexec/arcanist/scripts/arcanist.php $out/bin/arc''}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Command line interface to Phabricator";
|
|
homepage = "http://phabricator.org";
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|