From 8277beff4613ad27b43e33d5155b76e2c2ee4519 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:56:54 +0200 Subject: [PATCH] Fix LTS Haskell version of intervals. --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 5ffda7f2808..01f14636daa 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -198,5 +198,6 @@ self: super: { aeson = disableCabalFlag (addBuildDepend super.aeson self.semigroups) "old-locale"; case-insensitive = addBuildDepend super.case-insensitive self.semigroups; semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); + intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]); }