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
13
sha256 = "1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg";
14
14
};
15
15
16
16
-
buildInputs = [libpng];
16
16
+
buildInputs = [ libpng ];
17
17
+
18
18
+
# disable failing test on i686
19
19
+
prePatch = stdenv.lib.optionalString stdenv.isi686 ''
20
20
+
substituteInPlace test/Makefile.in --replace 'spline.test' ' '
21
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
48
-
maintainers = [
49
49
-
stdenv.lib.maintainers.marcweber
50
50
-
];
53
53
+
maintainers = [ stdenv.lib.maintainers.marcweber ];
51
54
platforms = stdenv.lib.platforms.gnu;
52
55
};
53
56
}