From 2b09bfc3c8b54536dca99186f8f1fef3482e96c1 Mon Sep 17 00:00:00 2001 From: Jordan Woehr Date: Tue, 13 Oct 2015 08:12:52 -0600 Subject: [PATCH] Latest llvm-general now requires llvm 3.5 --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index cc11adbb431..ad26ad43bdf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -635,8 +635,8 @@ self: super: { # Uses OpenGL in testing caramia = dontCheck super.caramia; - # Supports only 3.4 for now, https://github.com/bscarlet/llvm-general/issues/144 - llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_34; }; + # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142 + llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; }; # Needs help finding LLVM. spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;