1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

haskellPackages.vector-algorithms: added extra build dependencies for ghc 7.10 (#17586)

This commit is contained in:
Daiderd Jordan 2016-08-08 01:03:07 +02:00 committed by obadz
parent 0456264754
commit b8a3174aa3

View file

@ -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;