about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-12-19 17:25:35 +0100
committerPeter Simons <simons@cryp.to>2017-12-20 09:17:46 +0100
commit3e524aa06fe0b1a0a912a479bb9b65e89c812110 (patch)
treed799f2668170f684bc1f962766aaf0cef418ec8d /pkgs
parent1c0c6d80e74a00169fd207d329f38832b75197a9 (diff)
downloadnixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.tar
nixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.tar.gz
nixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.tar.bz2
nixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.tar.lz
nixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.tar.xz
nixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.tar.zst
nixlib-3e524aa06fe0b1a0a912a479bb9b65e89c812110.zip
haskell-configuration-common: drop obsolete overrides
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 66abc59664c9..d44015485557 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -15,13 +15,6 @@ 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
@@ -980,14 +973,13 @@ self: super: {
   # Newer hpack's needs newer HUnit, but we cannot easily override the version
   # used in the build, so we take the easy way out and disable the test suite.
   hpack_0_20_0 = dontCheck super.hpack_0_20_0;
-  hpack_0_21_2 = dontCheck super.hpack_0_21_2;
 
   # Stack 1.6.1 needs newer versions than LTS-9 provides.
   stack = super.stack.overrideScope (self: super: {
     hpack = super.hpack_0_20_0;
   });
 
-  # Hoogle needs a newer version than lts-9 provides.
+  # Hoogle needs a newer version than lts-10 provides.
   hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_20_1; };
 
 }