From e47a0ae7675e39cbb96332d199951ec2c3102f48 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 4 Mar 2017 14:11:06 +0100 Subject: [PATCH] haskell-arithmoi: test suite fails on i686 (cherry picked from commit cb1af9fd4f2d9c850a3d643133e72277371d3427) --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 0e7075a45d9..8811a7b093a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -876,4 +876,7 @@ self: super: { # https://github.com/diagrams/diagrams-lib/issues/288 diagrams-lib = overrideCabal super.diagrams-lib (drv: { doCheck = !pkgs.stdenv.isi686; }); + # https://github.com/cartazio/arithmoi/issues/49 + arithmoi = overrideCabal super.arithmoi (drv: { doCheck = !pkgs.stdenv.isi686; }); + }