summary refs log tree commit diff
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
parent1e4c4ccb5d58e22072d0c9bc0973a6c1212b23b1 (diff)
downloadnixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar
nixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.gz
nixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.bz2
nixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.lz
nixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.xz
nixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.tar.zst
nixpkgs-b8314072f96fb2505f398c2db5ce4ba52fa9b738.zip
haskell-vector: fix build with ghc-7.8.x and earlier
-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 31e56db9223..3c2f5841452 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;