Only build hiphopvm on x86_64-linux.

This commit is contained in:
Rob Vermaas 2012-12-02 20:49:59 +01:00
parent e1d2ffa934
commit dd0ba5d093

View File

@ -3,7 +3,6 @@
, expat, libcap, oniguruma, libdwarf, libmcrypt, inteltbb, google_perftools , expat, libcap, oniguruma, libdwarf, libmcrypt, inteltbb, google_perftools
, bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam , bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam
}: }:
assert stdenv.system == "x86_64-linux"; assert stdenv.system == "x86_64-linux";
let let
src = fetchgit { src = fetchgit {
@ -59,6 +58,6 @@ stdenv.mkDerivation {
meta = { meta = {
description = "HipHop is a high performance PHP toolchain."; description = "HipHop is a high performance PHP toolchain.";
homepage = https://github.com/facebook/hiphop-php; homepage = https://github.com/facebook/hiphop-php;
platforms = stdenv.lib.platforms.linux; platforms = ["x86_64-linux"];
}; };
} }