From a83e3ac32ccc03b4f91d5090df7c7a4960524984 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 20 Jan 2015 16:05:38 +0100 Subject: [PATCH] Fix vector and parallel builds with ghc 6.12.x. --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index 63a94f1585f..1108cb3998a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -68,6 +68,8 @@ self: super: { # 6.12.3 doesn't support the latest version. primitive = self.primitive_0_5_1_0; + parallel = self.parallel_3_2_0_3; + vector = self.vector_0_10_9_3; # These packages need more recent versions of core libraries to compile. happy = addBuildTools super.happy [self.Cabal_1_18_1_6 self.containers_0_4_2_1];