summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2016-08-08 01:03:07 +0200
committerobadz <obadz-git@obadz.com>2016-08-08 00:03:07 +0100
commitb8a3174aa3c6622ea82028f32987228ebc33c6ab (patch)
treeea36bede61b84d7902bcb66999fd47cabc12642f /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parent045626475431758717d78109946993250f9c532f (diff)
downloadnixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.tar
nixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.tar.gz
nixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.tar.bz2
nixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.tar.lz
nixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.tar.xz
nixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.tar.zst
nixpkgs-b8a3174aa3c6622ea82028f32987228ebc33c6ab.zip
haskellPackages.vector-algorithms: added extra build dependencies for ghc 7.10 (#17586)
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 66f7d4763b4..0ae88785af2 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -186,7 +186,8 @@ self: super: {
   vty-ui = enableCabalFlag super.vty-ui "no-tests";
 
   # https://github.com/fpco/stackage/issues/1112
-  vector-algorithms = dontCheck super.vector-algorithms;
+  vector-algorithms = addBuildDepends (dontCheck super.vector-algorithms)
+    [ self.mtl self.mwc-random ];
 
   # Trigger rebuild to mitigate broken packaes on Hydra.
   amazonka-core = triggerRebuild super.amazonka-core 1;