From 7a9881de6196ffe3f1e31d85d98be53672b93508 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 4 Mar 2017 14:03:24 +0100 Subject: [PATCH] haskell-diagrams-lib: test suite fails on i686 (cherry picked from commit 3e3dfdd085f17fec5e94d29a63e4bc898a4c4a79) --- 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 dd5d42b8a9f..0e7075a45d9 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -873,4 +873,7 @@ self: super: { # https://github.com/snoyberg/yaml/issues/106 yaml = disableCabalFlag super.yaml "system-libyaml"; + # https://github.com/diagrams/diagrams-lib/issues/288 + diagrams-lib = overrideCabal super.diagrams-lib (drv: { doCheck = !pkgs.stdenv.isi686; }); + }