summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix6
1 files changed, 3 insertions, 3 deletions
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;
 
 }