about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-05-28 13:56:54 +0200
committerPeter Simons <simons@cryp.to>2016-05-31 22:09:56 +0200
commit8277beff4613ad27b43e33d5155b76e2c2ee4519 (patch)
treee19ab14ec052bad656b200f41eeaf05cfc31aa92
parent2d1e907c61923c053bc61baa8021c149e43f4af0 (diff)
downloadnixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.tar
nixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.tar.gz
nixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.tar.bz2
nixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.tar.lz
nixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.tar.xz
nixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.tar.zst
nixlib-8277beff4613ad27b43e33d5155b76e2c2ee4519.zip
Fix LTS Haskell version of intervals.
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix1
1 files changed, 1 insertions, 0 deletions
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 5ffda7f28082..01f14636daa7 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]);
 
 }