summary refs log tree commit diff
path: root/pkgs/development/libraries/gmp/5.1.x.nix
diff options
context:
space:
mode:
authorJoel Taylor <me@joelt.io>2014-08-22 23:51:25 -0700
committerJoel Taylor <me@joelt.io>2014-09-09 13:54:26 -0700
commit6f949b2e872c8ef3d8c53c083506187c56afc85e (patch)
treec07309bd5452ed57bf9ee35ca64e7b37e44b04f1 /pkgs/development/libraries/gmp/5.1.x.nix
parent0577499d74dda2bb77ba3649681c10cadbfed5f2 (diff)
downloadnixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.tar
nixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.tar.gz
nixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.tar.bz2
nixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.tar.lz
nixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.tar.xz
nixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.tar.zst
nixpkgs-6f949b2e872c8ef3d8c53c083506187c56afc85e.zip
get rid of nasty CC stuff
Diffstat (limited to 'pkgs/development/libraries/gmp/5.1.x.nix')
-rw-r--r--pkgs/development/libraries/gmp/5.1.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gmp/5.1.x.nix b/pkgs/development/libraries/gmp/5.1.x.nix
index 5bee2fe4336..e9495b796dd 100644
--- a/pkgs/development/libraries/gmp/5.1.x.nix
+++ b/pkgs/development/libraries/gmp/5.1.x.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation (rec {
     ++ (if cxx then [ "--enable-cxx"  ]
                else [ "--disable-cxx" ])
     ++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
-    ++ optional stdenv.isDarwin "ABI=64 CC=clang"
+    ++ optional stdenv.isDarwin "ABI=64"
     ++ optional stdenv.is64bit "--with-pic"
     ;