plotutils: disable failing test on i686

+7 -4
+7 -4
pkgs/tools/graphics/plotutils/default.nix
··· 13 13 sha256 = "1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg"; 14 14 }; 15 15 16 - buildInputs = [libpng]; 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 + ''; 17 22 18 23 patches = map fetchurl (import ./debian-patches.nix); 19 24 ··· 45 50 homepage = http://www.gnu.org/software/plotutils/; 46 51 47 52 license = stdenv.lib.licenses.gpl2Plus; 48 - maintainers = [ 49 - stdenv.lib.maintainers.marcweber 50 - ]; 53 + maintainers = [ stdenv.lib.maintainers.marcweber ]; 51 54 platforms = stdenv.lib.platforms.gnu; 52 55 }; 53 56 }