summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-03-29 16:16:20 +0200
committerPeter Simons <simons@cryp.to>2017-03-29 20:30:29 +0200
commit4753a00caaf8f914e22947d10d182b9afbba2ca9 (patch)
treeb0f42440c8f2f90e999d3c5915d117476dba6744 /pkgs/development
parenta4ce475b61b4c7fb611cbcf6480ce4f03690220c (diff)
downloadnixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.tar
nixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.tar.gz
nixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.tar.bz2
nixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.tar.lz
nixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.tar.xz
nixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.tar.zst
nixpkgs-4753a00caaf8f914e22947d10d182b9afbba2ca9.zip
haskell-QuickCheck: fix build with GHC 7.4.x
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
index 3bbfa34fb50..4c2fb69ec80 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
@@ -92,7 +92,8 @@ self: super: {
   # Needs tagged on pre 7.6.x compilers.
   reflection = addBuildDepend super.reflection self.tagged;
 
-  # Needs nats on pre 7.6.x compilers.
-  semigroups = addBuildDepend super.semigroups self.nats;
+  # These builds Need additional dependencies on pre 7.6.x compilers.
+  semigroups = addBuildDepends super.semigroups (with self; [nats bytestring-builder tagged unordered-containers transformers]);
+  QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
 
 }