plotutils: disable failing test on i686

+7 -4
+7 -4
pkgs/tools/graphics/plotutils/default.nix
··· 13 sha256 = "1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg"; 14 }; 15 16 - buildInputs = [libpng]; 17 18 patches = map fetchurl (import ./debian-patches.nix); 19 ··· 45 homepage = http://www.gnu.org/software/plotutils/; 46 47 license = stdenv.lib.licenses.gpl2Plus; 48 - maintainers = [ 49 - stdenv.lib.maintainers.marcweber 50 - ]; 51 platforms = stdenv.lib.platforms.gnu; 52 }; 53 }
··· 13 sha256 = "1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg"; 14 }; 15 16 + buildInputs = [ libpng ]; 17 + 18 + # disable failing test on i686 19 + prePatch = stdenv.lib.optionalString stdenv.isi686 '' 20 + substituteInPlace test/Makefile.in --replace 'spline.test' ' ' 21 + ''; 22 23 patches = map fetchurl (import ./debian-patches.nix); 24 ··· 50 homepage = http://www.gnu.org/software/plotutils/; 51 52 license = stdenv.lib.licenses.gpl2Plus; 53 + maintainers = [ stdenv.lib.maintainers.marcweber ]; 54 platforms = stdenv.lib.platforms.gnu; 55 }; 56 }