1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

llvm: revert to _33 default on darwin as a temp workaround

_34 doesn't build and I don't have a clue what to do about it
(and I don't have a machine to test it anyway).
This commit is contained in:
Vladimír Čunát 2014-02-08 17:24:17 +01:00
parent 979473a17b
commit e78351cf3a

View file

@ -2794,7 +2794,8 @@ let
lessc = callPackage ../development/compilers/lessc { };
llvm = llvmPackages.llvm;
llvm = if stdenv.isDarwin then llvm_33 # until someone solves build problems with _34
else llvmPackages.llvm;
llvm_34 = llvmPackages.llvm;
llvm_33 = llvm_v ../development/compilers/llvm/3.3/llvm.nix;