From ce2efd0b5b99449f59f1f17f09cbde181072ab7c Mon Sep 17 00:00:00 2001 From: Christophe Raffalli Date: Sun, 16 Jun 2013 22:26:17 +0200 Subject: [PATCH] fixed dependencies of camlimages --- pkgs/development/ocaml-modules/camlimages/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/camlimages/default.nix b/pkgs/development/ocaml-modules/camlimages/default.nix index 00168d46c3f1..db11fc4fb8b2 100644 --- a/pkgs/development/ocaml-modules/camlimages/default.nix +++ b/pkgs/development/ocaml-modules/camlimages/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, omake, ocaml, omake_rc1, libtiff, libjpeg, libpng_apng, giflib, findlib, libXpm, freetype, graphicsmagick, ghostscript }: +{stdenv, fetchurl, omake, ocaml, omake_rc1, libtiff, libjpeg, libpng_apng, giflib, findlib, libXpm, freetype, graphicsmagick, ghostscript, lablgtk }: let ocaml_version = (builtins.parseDrvName ocaml.name).version; @@ -14,9 +14,9 @@ stdenv.mkDerivation { sha256 = "b40237c1505487049799a7af296eb3996b3fa08eab94415546f46d61355747c4"; }; - buildInputs = [ocaml omake_rc1 findlib graphicsmagick ghostscript ]; + buildInputs = [ocaml omake_rc1 findlib graphicsmagick ghostscript libtiff libjpeg libpng_apng giflib freetype libXpm lablgtk]; - propagatedbuildInputs = [libtiff libjpeg libpng_apng giflib freetype libXpm ]; + propagatedbuildInputs = [libtiff libjpeg libpng_apng giflib freetype libXpm lablgtk ]; createFindlibDestdir = true;