3
0
Fork 0
forked from mirrors/nixpkgs

haskell-vector: jailbreak to fix test suite build

This commit is contained in:
Peter Simons 2016-10-01 11:11:11 +02:00
parent e3cc3de334
commit 79f92f00f9

View file

@ -160,8 +160,10 @@ self: super: {
ABList = dontCheck super.ABList;
# https://github.com/haskell/vector/issues/47
vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector;
# https://github.com/haskell/vector/issues/138
vector = doJailbreak (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
# Fix Darwin build.
halive = if pkgs.stdenv.isDarwin
then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit
else super.halive;