3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/arcanist/default.nix

59 lines
1.5 KiB
Nix
Raw Normal View History

2016-08-26 00:22:57 +01:00
{ stdenv, fetchFromGitHub, php, flex, makeWrapper }:
let
2016-08-26 00:22:57 +01:00
libphutil = fetchFromGitHub {
owner = "phacility";
repo = "libphutil";
2019-10-13 12:14:38 +01:00
rev = "39ed96cd818aae761ec92613a9ba0800824d0ab0";
sha256 = "1w55avn056kwa4gr25h09b7xhvyp397myrfzlmd1ggx7vj87vw1q";
};
2016-08-26 00:22:57 +01:00
arcanist = fetchFromGitHub {
owner = "phacility";
repo = "arcanist";
2019-10-13 12:14:38 +01:00
rev = "3cdfe1fff806d2b54a2df631cf90193e518f42b7";
sha256 = "1dngq8p4y4hln87hhgdm6hv68ld626j57lifw0821rvpnnmspw6j";
};
in
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "arcanist";
2019-10-13 12:14:38 +01:00
version = "20190905";
src = [ arcanist libphutil ];
buildInputs = [ php makeWrapper flex ];
2018-01-06 15:49:26 +00:00
unpackPhase = ''
cp -aR ${libphutil} libphutil
cp -aR ${arcanist} arcanist
chmod +w -R libphutil arcanist
2018-01-06 15:49:26 +00:00
'';
postPatch = stdenv.lib.optionalString stdenv.isAarch64 ''
substituteInPlace libphutil/support/xhpast/Makefile \
--replace "-minline-all-stringops" ""
'';
buildPhase = ''
2016-08-26 00:22:57 +01:00
(
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
ln -s $out/libexec/arcanist/bin/arc $out/bin
wrapProgram $out/bin/arc \
--prefix PATH : "${php}/bin"
'';
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 ];
};
}