haskell-vector: disable the test suite to work around https://github.com/haskell/vector/issues/138
This commit is contained in:
parent
8968bff461
commit
30b762a977
|
@ -139,9 +139,9 @@ self: super: {
|
||||||
# https://github.com/techtangents/ablist/issues/1
|
# https://github.com/techtangents/ablist/issues/1
|
||||||
ABList = dontCheck super.ABList;
|
ABList = dontCheck super.ABList;
|
||||||
|
|
||||||
# https://github.com/haskell/vector/issues/47
|
# sse2 flag due to https://github.com/haskell/vector/issues/47.
|
||||||
# https://github.com/haskell/vector/issues/138
|
# dontCheck due to https://github.com/haskell/vector/issues/138
|
||||||
vector = doJailbreak (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
|
vector = dontCheck (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
|
||||||
|
|
||||||
# Fix Darwin build.
|
# Fix Darwin build.
|
||||||
halive = if pkgs.stdenv.isDarwin
|
halive = if pkgs.stdenv.isDarwin
|
||||||
|
|
Loading…
Reference in New Issue