65 lines
2.1 KiB
Nix
65 lines
2.1 KiB
Nix
{ stdenv, fetchgit, cmake, pkgconfig, boost, libunwind, mariadb, libmemcached, pcre
|
|
, libevent, gd, curl, libxml2, icu, flex, bison, openssl, zlib, php, re2c
|
|
, expat, libcap, oniguruma, libdwarf, libmcrypt, tbb, gperftools, glog
|
|
, bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam, libpng
|
|
, libxslt, ocaml, freetype
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "hhvm-${version}";
|
|
version = "3.2.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/facebook/hhvm.git";
|
|
rev = "01228273b8cf709aacbd3df1c51b1e690ecebac8";
|
|
sha256 = "418d5a55ac4ba5335a42329ebfb7dd96fdb8d5edbc2700251c86e9fa2ae4a967";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
buildInputs =
|
|
[ cmake pkgconfig boost libunwind mariadb libmemcached pcre
|
|
libevent gd curl libxml2 icu flex bison openssl zlib php expat libcap
|
|
oniguruma libdwarf libmcrypt tbb gperftools bzip2 openldap readline
|
|
libelf uwimap binutils cyrus_sasl pam glog libpng libxslt ocaml
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
dontUseCmakeBuildDir = true;
|
|
dontUseCmakeConfigure = true;
|
|
NIX_LDFLAGS = "-lpam -L${pam}/lib";
|
|
USE_HHVM=1;
|
|
MYSQL_INCLUDE_DIR="${mariadb}/include/mysql";
|
|
MYSQL_DIR=mariadb;
|
|
|
|
# work around broken build system
|
|
NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2";
|
|
|
|
patchPhase = ''
|
|
substituteInPlace hphp/util/generate-buildinfo.sh \
|
|
--replace /bin/bash ${stdenv.shell}
|
|
substituteInPlace ./configure \
|
|
--replace "/usr/bin/env bash" ${stdenv.shell}
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/lib
|
|
mv hphp/hhvm/hhvm $out/bin
|
|
mv hphp/hack/bin/hh_server $out/bin
|
|
mv hphp/hack/bin/hh_client $out/bin
|
|
mv hphp/hack/hhi $out/lib/hack-hhi
|
|
|
|
cat > $out/bin/hhvm-hhi-copy <<EOF
|
|
#!${stdenv.shell}
|
|
cp -R $out/lib/hack-hhi \$1
|
|
EOF
|
|
chmod +x $out/bin/hhvm-hhi-copy
|
|
'';
|
|
|
|
meta = {
|
|
description = "High-performance JIT compiler for PHP/Hack";
|
|
homepage = "http://hhvm.com";
|
|
license = "PHP/Zend";
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|