From 96ff4141984383bbf9bdbfca7edb4fd054ee7fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 4 Mar 2021 20:35:08 +0100 Subject: [PATCH] fmbt: fix compilation --- pkgs/development/tools/fmbt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/fmbt/default.nix b/pkgs/development/tools/fmbt/default.nix index e6bb2032741..852f00bf69c 100644 --- a/pkgs/development/tools/fmbt/default.nix +++ b/pkgs/development/tools/fmbt/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchFromGitHub, python, autoreconfHook, pkg-config, makeWrapper , flex -, gettext, libedit, glib, imagemagick, libxml2, boost, gnuplot, graphviz +, gettext, libedit, glib, imagemagick6, libxml2, boost, gnuplot, graphviz , tesseract, gts, libXtst }: stdenv.mkDerivation rec { @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook pkg-config flex makeWrapper python.pkgs.wrapPython ]; - buildInputs = [ python gettext libedit glib imagemagick libxml2 boost + buildInputs = [ python gettext libedit glib imagemagick6 libxml2 boost gnuplot graphviz tesseract gts ];