From e7f9d4e03f40e7c5dd4947da36a0aa704be9f263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 11 Mar 2010 23:25:03 +0000 Subject: [PATCH] Try GMP 5 on Darwin. svn path=/nixpkgs/branches/stdenv-updates/; revision=20587 --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 128958e0fa6..4794e056880 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3793,8 +3793,8 @@ let inherit fetchurl stdenv; }; - gmp = - if stdenv.system == "i686-darwin" then + gmp = + if false then # XXX: stdenv.system == "i686-darwin" then # GMP 4.3.2 is broken on Darwin, so use 4.3.1. makeOverridable (import ../development/libraries/gmp/4.3.1.nix) { inherit stdenv fetchurl m4;