From dd0ba5d0938035cb746ff8d5a4a36aebaaddedcc Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Sun, 2 Dec 2012 20:49:59 +0100 Subject: [PATCH] Only build hiphopvm on x86_64-linux. --- pkgs/development/interpreters/hiphopvm/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/hiphopvm/default.nix b/pkgs/development/interpreters/hiphopvm/default.nix index 15cf4edc4afd..d2cdf06f1385 100644 --- a/pkgs/development/interpreters/hiphopvm/default.nix +++ b/pkgs/development/interpreters/hiphopvm/default.nix @@ -3,7 +3,6 @@ , expat, libcap, oniguruma, libdwarf, libmcrypt, inteltbb, google_perftools , bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam }: - assert stdenv.system == "x86_64-linux"; let src = fetchgit { @@ -59,6 +58,6 @@ stdenv.mkDerivation { meta = { description = "HipHop is a high performance PHP toolchain."; homepage = https://github.com/facebook/hiphop-php; - platforms = stdenv.lib.platforms.linux; + platforms = ["x86_64-linux"]; }; }