From d42d6438b2d095aa2ac16297138f1a5d069cfa6b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 5 May 2015 12:47:32 +0200 Subject: [PATCH] Use old conduit version 1.2.4.1 for GHC 7.6.x and 7.8.x. Newer versions seem impossible to compile with older GHCs because they invariably refer to a non-existent version of 'void': http://hydra.cryp.to/build/794276/nixlog/41/raw http://hydra.cryp.to/build/794273/nixlog/98/raw --- .../development/haskell-modules/configuration-ghc-7.6.x.nix | 6 +++--- .../development/haskell-modules/configuration-ghc-7.8.x.nix | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index a9c2bb609ae..1adccd36dca 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -76,8 +76,8 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; - # Ugly hack that triggers a re-build to get rid of the broken version served - # by Hydra: http://hydra.cryp.to/build/794276/nixlog/41/raw. - void = appendConfigureFlag super.void "-fignore-me-3"; + # Newer versions always trigger the non-deterministic library ID bug + # and are virtually impossible to compile on Hydra. + conduit = super.conduit_1_2_4_1; } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index fb95a3c2833..f481f75c2f8 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -132,8 +132,8 @@ self: super: { # needs mtl-compat to build with mtl 2.1.x cgi = addBuildDepend super.cgi self.mtl-compat; - # Ugly hack that triggers a re-build to get rid of the broken version served - # by Hydra: http://hydra.cryp.to/build/794273/nixlog/98/raw. - void = appendConfigureFlag super.void "-fignore-me-3"; + # Newer versions always trigger the non-deterministic library ID bug + # and are virtually impossible to compile on Hydra. + conduit = super.conduit_1_2_4_1; }