haskell-vector: disable the test suite to work around https://github.com/haskell/vector/issues/138

wip/yesman
Peter Simons 7 years ago
parent 8968bff461
commit 30b762a977
  1. 6
      pkgs/development/haskell-modules/configuration-common.nix

@ -139,9 +139,9 @@ self: super: {
# https://github.com/techtangents/ablist/issues/1
ABList = dontCheck super.ABList;
# https://github.com/haskell/vector/issues/47
# https://github.com/haskell/vector/issues/138
vector = doJailbreak (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
# sse2 flag due to https://github.com/haskell/vector/issues/47.
# dontCheck due to https://github.com/haskell/vector/issues/138
vector = dontCheck (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
# Fix Darwin build.
halive = if pkgs.stdenv.isDarwin

Loading…
Cancel
Save