forked from mirrors/nixpkgs
Merge pull request #17910 from womfoo/fix/plotutils-disable-i686-tests
plotutils: disable i686 tests
This commit is contained in:
commit
875e6c68de
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue