summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-04 20:35:08 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-05 18:14:35 +0100
commit96ff4141984383bbf9bdbfca7edb4fd054ee7fcc (patch)
tree1a4b5c09db7a305e9d0ac6a3919bc12146722447
parent57312f14e9ddeb90741991bb5febc1d2a45009a9 (diff)
downloadnixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.tar
nixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.tar.gz
nixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.tar.bz2
nixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.tar.lz
nixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.tar.xz
nixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.tar.zst
nixpkgs-96ff4141984383bbf9bdbfca7edb4fd054ee7fcc.zip
fmbt: fix compilation
-rw-r--r--pkgs/development/tools/fmbt/default.nix4
1 files 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
     ];