about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBas van Dijk <v.dijk.bas@gmail.com>2017-09-10 10:36:40 +0200
committerBas van Dijk <v.dijk.bas@gmail.com>2017-09-10 10:36:40 +0200
commitc910bbb13412ca367a2de19c8d51eab052e0a114 (patch)
tree12ceafb774d1e9ad4a44bfec74d6c8450e1c5c02 /pkgs
parent398b36431d6f08b4b9902a8e2d2d4eb0bd34e435 (diff)
downloadnixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.tar
nixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.tar.gz
nixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.tar.bz2
nixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.tar.lz
nixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.tar.xz
nixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.tar.zst
nixlib-c910bbb13412ca367a2de19c8d51eab052e0a114.zip
haskell: fix build of attoparsec-data
Fixes: https://hydra.nixos.org/build/60421889
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 48b3108d0ed0..df45ad815b93 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -15,6 +15,13 @@ with haskellLib;
 
 self: super: {
 
+  attoparsec-time_1 = super.attoparsec-time_1.override {
+    doctest = super.doctest_0_13_0;
+  };
+  attoparsec-data = super.attoparsec-data.override {
+    attoparsec-time = self.attoparsec-time_1;
+  };
+
   # This used to be a core package provided by GHC, but then the compiler
   # dropped it. We define the name here to make sure that old packages which
   # depend on this library still evaluate (even though they won't compile