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 15:59:49 +0200
committerPeter Simons <simons@cryp.to>2017-08-23 19:53:11 +0200
commita3326e85c078d7dc628ab83a78e2467d528471da (patch)
treeb1df9456bb6489f4a9403aa4974b44f6f31cb8ea /pkgs/development/haskell-modules
parentb5d486135649a026a62f048c75e55bb89163990b (diff)
downloadnixlib-a3326e85c078d7dc628ab83a78e2467d528471da.tar
nixlib-a3326e85c078d7dc628ab83a78e2467d528471da.tar.gz
nixlib-a3326e85c078d7dc628ab83a78e2467d528471da.tar.bz2
nixlib-a3326e85c078d7dc628ab83a78e2467d528471da.tar.lz
nixlib-a3326e85c078d7dc628ab83a78e2467d528471da.tar.xz
nixlib-a3326e85c078d7dc628ab83a78e2467d528471da.tar.zst
nixlib-a3326e85c078d7dc628ab83a78e2467d528471da.zip
haskell-vector: mark broken on GHC 7.6.x and earlier
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix1
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix1
2 files changed, 2 insertions, 0 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 cf5009242231..b81fd3e81766 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
@@ -102,6 +102,7 @@ self: super: {
   QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
   optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
   text = addBuildDepend super.text self.bytestring-builder;
+  vector = addBuildDepend super.vector self.semigroups;
 
   # Newer versions don't compile any longer.
   network_2_6_3_1 = dontCheck super.network_2_6_3_1;
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 021397de9726..8703ca9cb107 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
@@ -101,6 +101,7 @@ self: super: {
   QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
   void = addBuildDepends super.void (with self; [hashable semigroups]);
   optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
+  vector = addBuildDepend super.vector self.semigroups;
 
   # Need a newer version of Cabal to interpret their build instructions.
   cmdargs = addSetupDepend super.cmdargs self.Cabal_1_24_2_0;