summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-03-29 16:11:38 +0200
committerPeter Simons <simons@cryp.to>2017-03-29 20:30:29 +0200
commita4ce475b61b4c7fb611cbcf6480ce4f03690220c (patch)
treee86b72b2448180ee08382bb3521e752d671859db /pkgs/development
parentf79cb54cee61d09f627326a739097701a8ad70d5 (diff)
downloadnixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.tar
nixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.tar.gz
nixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.tar.bz2
nixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.tar.lz
nixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.tar.xz
nixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.tar.zst
nixpkgs-a4ce475b61b4c7fb611cbcf6480ce4f03690220c.zip
haskell-void: fix build with GHC 7.8.x
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
index f63d31c9efd..1a151efcf38 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -148,6 +148,7 @@ self: super: {
   lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
   distributive = addBuildDepend super.distributive self.semigroups;
   QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
+  void = addBuildDepends super.void (with self; [hashable semigroups]);
 
   # Haddock doesn't cope with the new markup.
   bifunctors = dontHaddock super.bifunctors;