mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
plotutils: disable i686 tests
This commit is contained in:
parent
a28ca06298
commit
fd6a4d23c9
@ -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…
Reference in New Issue
Block a user