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
1 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = "--enable-libplotter"; # required for pstoedit
|
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 = {
|
meta = {
|
||||||
description = "Powerful C/C++ library for exporting 2D vector graphics";
|
description = "Powerful C/C++ library for exporting 2D vector graphics";
|
||||||
|
|
Loading…
Add table
Reference in a new issue