summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-10-03 21:22:06 +0200
committervbgl <vbgl@users.noreply.github.com>2016-10-10 19:16:32 +0200
commit4083964c6f8b8282043e028ac4ac4f1189f51cbe (patch)
tree9c51c1c95c34957623153b04b85e5255e2878e8b /pkgs/development/ocaml-modules
parent577fc11cdd063cc38392da4e67cb87d893ecf11a (diff)
downloadnixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.tar
nixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.tar.gz
nixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.tar.bz2
nixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.tar.lz
nixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.tar.xz
nixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.tar.zst
nixlib-4083964c6f8b8282043e028ac4ac4f1189f51cbe.zip
ocaml-llvm: fix build on darwin
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/llvm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/llvm/default.nix b/pkgs/development/ocaml-modules/llvm/default.nix
index 2f58c41ba355..351a773a6f7b 100644
--- a/pkgs/development/ocaml-modules/llvm/default.nix
+++ b/pkgs/development/ocaml-modules/llvm/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
   configurePhase = ''
     mkdir build
     cd build
-    ../configure CC=gcc CXX=g++ --disable-compiler-version-checks --prefix=$out \
+    ../configure --disable-compiler-version-checks --prefix=$out \
     --disable-doxygen --disable-docs --with-ocaml-libdir=$OCAMLFIND_DESTDIR/llvm \
     --enable-static
     '';