Merge recent master

This commit is contained in:
Vladimír Čunát
2014-06-12 09:15:11 +02:00
53 changed files with 2886 additions and 4623 deletions

View File

@@ -1,61 +0,0 @@
{ 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, 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 = "1e23dec9f0b1ce8aaa5833d0527a369c8e254ffd";
sha256 = "0fblwgq8c3hmamw0m5d1mn8qhyqf14v2zf62cgrkvmbiz6jlrbr6";
};
libxml2_280 = stdenv.lib.overrideDerivation libxml2 (args: rec {
name = "libxml2-2.8.0";
src = fetchurl {
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
sha256 = "0ak2mjwvanz91nwxf1kkgbhrkm85vhhkpj7ymz8r6lb84bix1qpj";
};
patches = [];
});
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-1e23dec9f0";
inherit src;
dontUseCmakeBuildDir = true;
dontUseCmakeConfigure = true;
USE_HHVM=1;
preConfigure = ''
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 '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 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 glog libpng
];
installPhase = ''
mkdir -p $out/bin
cp hphp/hhvm/hhvm $out/bin
'';
patches = [./tbb.patch];
meta = {
description = "High performance PHP toolchain";
homepage = https://github.com/facebook/hiphop-php;
platforms = ["x86_64-linux"];
};
}

View File

@@ -1,13 +0,0 @@
diff --git a/CMake/FindTBB.cmake b/CMake/FindTBB.cmake
index 6a09c85..977418c 100644
--- a/CMake/FindTBB.cmake
+++ b/CMake/FindTBB.cmake
@@ -164,7 +164,7 @@ mark_as_advanced(TBB_INCLUDE_DIR)
#-- Look for libraries
# GvdB: $ENV{TBB_ARCH_PLATFORM} is set by the build script tbbvars[.bat|.sh|.csh]
if (NOT $ENV{TBB_ARCH_PLATFORM} STREQUAL "")
- set (TBB_LIBRARY_DIR "${_TBB_INSTALL_DIR}/$ENV{TBB_ARCH_PLATFORM}/lib")
+ set (TBB_LIBRARY_DIR "${_TBB_INSTALL_DIR}/lib/$ENV{TBB_ARCH_PLATFORM}")
else (NOT $ENV{TBB_ARCH_PLATFORM} STREQUAL "")
# HH: deprecated
message(STATUS "[Warning] FindTBB.cmake: The use of TBB_ARCHITECTURE and TBB_COMPILER is deprecated and may not be supported in future versions. Please set $ENV{TBB_ARCH_PLATFORM} (using tbbvars.[bat|csh|sh]).")

View File

@@ -0,0 +1,27 @@
{ stdenv, fetchurl, perl, jdk, icu, zlib, gmp, readline }:
stdenv.mkDerivation rec {
name = "rakudo-star-${version}";
version = "2014.04";
src = fetchurl {
url = "http://rakudo.org/downloads/star/${name}.tar.gz";
sha256 = "0spdrxc2kiidpgni1vl71brgs4d76h8029w5jxvah3yvjcqixz7l";
};
buildInputs = [ icu zlib gmp readline jdk perl ];
configureScript = "perl ./Configure.pl";
configureFlags =
[ "--gen-moar"
"--gen-nqp"
"--gen-parrot"
];
meta = {
description = "A Perl 6 implementation";
homepage = "http://www.rakudo.org";
license = stdenv.lib.licenses.artistic2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}