Downgrade more Haskell packages to LLVM 3.4.

This commit is contained in:
Peter Simons 2015-02-05 13:28:54 +01:00
parent 0bfd77b0f1
commit 9c5d5b4e93

View File

@ -443,8 +443,10 @@ self: super: {
# https://github.com/ucsd-progsys/liquid-fixpoint/issues/44
liquid-fixpoint = overrideCabal super.liquid-fixpoint (drv: { preConfigure = "patchShebangs ."; });
# https://github.com/jimsnow/glome/issues/2
GlomeVec = super.GlomeVec.override { llvm = pkgs.llvm_34; };
# LLVM 3.5 breaks GHC: https://ghc.haskell.org/trac/ghc/ticket/9142.
GlomeVec = super.GlomeVec.override { llvm = pkgs.llvm_34; }; # https://github.com/jimsnow/glome/issues/2
gloss-raster = super.gloss-raster.override { llvm = pkgs.llvm_34; };
repa-examples = super.repa-examples.override { llvm = pkgs.llvm_34; };
# Upstream notified by e-mail.
OpenGLRaw21 = markBrokenVersion "1.2.0.1" super.OpenGLRaw21;