summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-06-05 17:57:23 +0200
committerPeter Simons <simons@cryp.to>2016-06-06 09:33:31 +0200
commit0cc1b3744e439c6809832e8489793204ef6c9393 (patch)
treee317c832259de89fe1d9dc314e7b384992773262 /pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
parenta01fab64e2683531c0fb28e2582a2129b251ffd3 (diff)
downloadnixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.tar
nixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.tar.gz
nixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.tar.bz2
nixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.tar.lz
nixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.tar.xz
nixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.tar.zst
nixpkgs-0cc1b3744e439c6809832e8489793204ef6c9393.zip
haskell-semigroups: fix build with older compilers
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
index 1eebbf2ced9..b48f9cfd33c 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
@@ -96,7 +96,7 @@ self: super: {
   # Needs void on pre 7.10.x compilers.
   conduit = addBuildDepend super.conduit self.void;
 
-  # Needs nats on pre 7.10.x compilers.
-  semigroups = addBuildDepend super.semigroups self.nats;
+  # Needs additional inputs on pre 7.10.x compilers.
+  semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers transformers]);
 
 }