mldonkey: add libjpeg to build inputs

Possibly jpeg used to be propagated from gd but is no longer after
f8bdd7969d.
This commit is contained in:
Joachim Fasting 2016-05-14 07:13:34 +02:00
parent 94286527ac
commit 2113b7389a
No known key found for this signature in database
GPG Key ID: 4330820E1E04DCF4

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, ocaml, zlib, bzip2, ncurses, file, gd, libpng }:
{stdenv, fetchurl, ocaml, zlib, bzip2, ncurses, file, gd, libpng, libjpeg }:
stdenv.mkDerivation (rec {
name = "mldonkey-3.1.5";
@ -14,7 +14,7 @@ stdenv.mkDerivation (rec {
license = stdenv.lib.licenses.gpl2;
};
buildInputs = [ ocaml zlib ncurses bzip2 file gd libpng ];
buildInputs = [ ocaml zlib ncurses bzip2 file gd libpng libjpeg ];
configureFlags = [ "--disable-gui" ];
} // (if !ocaml.nativeCompilers then
{