From b8a3174aa3c6622ea82028f32987228ebc33c6ab Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 8 Aug 2016 01:03:07 +0200 Subject: [PATCH] haskellPackages.vector-algorithms: added extra build dependencies for ghc 7.10 (#17586) --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;