summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-08-25 14:41:30 +0200
committerPeter Simons <simons@cryp.to>2017-08-25 14:42:04 +0200
commit30c15c9149a6ea37533cd4b7cc8f231bd1f21780 (patch)
tree7ed4a4226fb2729f32e34a6139e4a0cb0025fb36 /pkgs/development/haskell-modules
parentd42deacc00940a829d207a687c45ab3578bb22b8 (diff)
downloadnixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.tar
nixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.tar.gz
nixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.tar.bz2
nixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.tar.lz
nixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.tar.xz
nixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.tar.zst
nixlib-30c15c9149a6ea37533cd4b7cc8f231bd1f21780.zip
Fix a bunch of ghc-8.2.x Haskell builds.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index d1e22d881c35..fc0c34f03971 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -48,8 +48,6 @@ self: super: {
     sha256 = "026vv2k3ks73jngwifszv8l59clg88pcdr4mz0wr0gamivkfa1zy";
   });
 
-  ## GHC > 8.0.2
-
   # http://hub.darcs.net/dolio/vector-algorithms/issue/9#comment-20170112T145715
   vector-algorithms = dontCheck super.vector-algorithms;
 
@@ -62,5 +60,12 @@ self: super: {
   # Work around overly restrictive constraints on the version of 'base'.
   ChasingBottoms = doJailbreak super.ChasingBottoms;
   hashable = doJailbreak super.hashable;
+  protolude = doJailbreak super.protolude;
+  quickcheck-instances = doJailbreak super.quickcheck-instances;
+
+  # LTS-9 versions do not compile.
+  path = dontCheck super.path;
+  path-io = super.path-io_1_3_3;
+  trifecta = super.trifecta_1_7_1_1;
 
 }