From fd6a4d23c993f22dff434233ec50db98c6eaf8ed Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Mon, 22 Aug 2016 19:59:46 +0800 Subject: plotutils: disable i686 tests --- pkgs/tools/graphics/plotutils/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/plotutils/default.nix b/pkgs/tools/graphics/plotutils/default.nix index 6a7a6745c87c..1bbc76192b61 100644 --- a/pkgs/tools/graphics/plotutils/default.nix +++ b/pkgs/tools/graphics/plotutils/default.nix @@ -19,7 +19,9 @@ stdenv.mkDerivation rec { configureFlags = "--enable-libplotter"; # required for pstoedit - doCheck = true; + # disable tests on i686 like ubuntu + # https://lists.gnu.org/archive/html/bug-plotutils/2016-04/msg00002.html + doCheck = if stdenv.isi686 then false else true; meta = { description = "Powerful C/C++ library for exporting 2D vector graphics"; -- cgit 1.4.1