hiphopvm: update to commit 1e23dec9f0

This commit is contained in:
Emil Rangden 2014-01-24 19:23:23 +01:00
parent 287a7e08f3
commit 1e3a151d3b
2 changed files with 13 additions and 14 deletions

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, fetchgit, cmake, boost, libunwind, mysql, libmemcached, pcre
, libevent, gd, curl, libxml2, icu, flex, bison, openssl, zlib, php, re2c
, expat, libcap, oniguruma, libdwarf, libmcrypt, inteltbb, gperftools
, bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam
, expat, libcap, oniguruma, libdwarf, libmcrypt, inteltbb, gperftools, glog
, bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam, libpng
}:
assert stdenv.system == "x86_64-linux";
let
src = fetchgit {
url = "git://github.com/facebook/hiphop-php.git";
rev = "73f1c0ebd9b313f6b3baecd8c8046e0b595b1157";
sha256 = "104133c6054bc9ab0288eaa0cea168b6699e537b3ea76ecdc38ee833d93dca09";
rev = "1e23dec9f0b1ce8aaa5833d0527a369c8e254ffd";
sha256 = "0fblwgq8c3hmamw0m5d1mn8qhyqf14v2zf62cgrkvmbiz6jlrbr6";
};
libxml2_280 = stdenv.lib.overrideDerivation libxml2 (args: rec {
@ -21,37 +21,35 @@ let
patches = [];
});
curlFB = stdenv.lib.overrideDerivation curl (args: { patches = [ "${src}/src/third_party/libcurl-7.22.1.fb-changes.diff" ]; });
fbPatch = "${src}/src/third_party/libevent-1.4.14.fb-changes.diff";
fbPatch = "${src}/hphp/third_party/libevent-1.4.14.fb-changes.diff";
libeventFB = stdenv.lib.overrideDerivation libevent (args: { patches = [fbPatch]; });
in
stdenv.mkDerivation {
name = "hiphop-php-73f1c0ebd9";
name = "hiphop-php-1e23dec9f0";
inherit src;
dontUseCmakeBuildDir = true;
dontUseCmakeConfigure = true;
USE_HHVM=1;
preConfigure = ''
export HPHP_HOME=$PWD
export HPHP_LIB=$PWD/bin
export TBB_INSTALL_DIR=${inteltbb}
export TBB_ARCH_PLATFORM="intel64/cc4.1.0_libc2.4_kernel2.6.16.21"
sed -i 's| DEPRECATED | DEPRECATED_ |' src/runtime/base/runtime_error.h
sed 's=/bin/bash=/${stdenv.shell}=g' -i hphp/util/generate-buildinfo.sh
'';
NIX_LDFLAGS = "-lpam -L${pam}/lib";
MYSQL_INCLUDE_DIR="${mysql}/include/mysql";
MYSQL_DIR=mysql;
buildInputs = [
cmake boost libunwind mysql libmemcached pcre libeventFB gd curlFB
cmake boost libunwind mysql libmemcached pcre libeventFB gd curl
libxml2_280 icu flex bison openssl zlib php expat libcap oniguruma
libdwarf libmcrypt inteltbb gperftools bzip2 openldap readline
libelf uwimap binutils cyrus_sasl pam
libelf uwimap binutils cyrus_sasl pam glog libpng
];
installPhase = ''
mkdir -p $out/bin
cp src/hhvm/hhvm $out/bin
cp bin/systemlib.php $out/bin
cp hphp/hhvm/hhvm $out/bin
'';
patches = [./tbb.patch];

View File

@ -2670,6 +2670,7 @@ let
hiphopvm = callPackage ../development/interpreters/hiphopvm {
libevent = libevent14;
boost = boost149;
stdenv = overrideGCC stdenv gcc48;
};
falcon = builderDefsPackage (import ../development/interpreters/falcon) {