tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fmbt: fix compilation
Sandro Jäckel
4 years ago
96ff4141
57312f14
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
fmbt
default.nix
+2
-2
pkgs/development/tools/fmbt/default.nix
···
1
1
{ lib, stdenv, fetchFromGitHub, python, autoreconfHook, pkg-config, makeWrapper
2
2
, flex
3
3
-
, gettext, libedit, glib, imagemagick, libxml2, boost, gnuplot, graphviz
3
3
+
, gettext, libedit, glib, imagemagick6, libxml2, boost, gnuplot, graphviz
4
4
, tesseract, gts, libXtst
5
5
}:
6
6
stdenv.mkDerivation rec {
···
17
17
nativeBuildInputs = [ autoreconfHook pkg-config flex makeWrapper
18
18
python.pkgs.wrapPython ];
19
19
20
20
-
buildInputs = [ python gettext libedit glib imagemagick libxml2 boost
20
20
+
buildInputs = [ python gettext libedit glib imagemagick6 libxml2 boost
21
21
gnuplot graphviz tesseract gts
22
22
];
23
23