tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
plotutils: disable failing test on i686
Franz Pletz
9 years ago
f29214ca
6be25ae5
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
graphics
plotutils
default.nix
+7
-4
pkgs/tools/graphics/plotutils/default.nix
···
13
sha256 = "1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg";
14
};
15
16
-
buildInputs = [libpng];
0
0
0
0
0
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 ];
0
0
54
platforms = stdenv.lib.platforms.gnu;
55
};
56
}