about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2016-08-24 22:03:44 +0200
committerGitHub <noreply@github.com>2016-08-24 22:03:44 +0200
commit875e6c68de72bbd4e97876e63a7f6372e83aff50 (patch)
tree4aed549f0a9a045458d68b2a2eb2e884fd42070e /pkgs/tools/graphics
parent6cd8f4832734221379cdfafd441521b3acb531c4 (diff)
parentfd6a4d23c993f22dff434233ec50db98c6eaf8ed (diff)
downloadnixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.tar
nixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.tar.gz
nixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.tar.bz2
nixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.tar.lz
nixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.tar.xz
nixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.tar.zst
nixlib-875e6c68de72bbd4e97876e63a7f6372e83aff50.zip
Merge pull request #17910 from womfoo/fix/plotutils-disable-i686-tests
plotutils: disable i686 tests
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/plotutils/default.nix4
1 files changed, 3 insertions, 1 deletions
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";