summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-08-23 14:23:17 +0200
committerPeter Simons <simons@cryp.to>2017-08-23 19:53:10 +0200
commitb8314072f96fb2505f398c2db5ce4ba52fa9b738 (patch)
treec38a53b5133d3bf3e8ea6e3c789054597230d5c5 /pkgs/development/haskell-modules
parent1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1 (diff)
downloadnixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar
nixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.gz
nixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.bz2
nixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.lz
nixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.xz
nixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.zst
nixlib-b8314072f96fb2505f398c2db5ce4ba52fa9b738.zip
haskell-vector: fix build with ghc-7.8.x and earlier
Diffstat (limited to 'pkgs/development/haskell-modules')
-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 31e56db92231..3c2f58414520 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -150,6 +150,7 @@ self: super: {
   QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
   void = addBuildDepends super.void (with self; [hashable semigroups]);
   optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
+  vector = addBuildDepend super.vector self.semigroups;
 
   # Haddock doesn't cope with the new markup.
   bifunctors = dontHaddock super.bifunctors;