gd: propagate image format dependencies

After f8bdd7969d1af9b1f4ab5f968fae336190c1ae1c it has become necessary for users
of gd to also add inputs for optional image format support, such as libjpeg and
libwebp.

This patch makes the following commits obsolete:
- 972c438c03f046bddffea2a2ae349aaf6e652277
- 2113b7389afa040923e8e33443d3f5ce6eaed69e
- 94286527ace1f7c3b09bf68e9449a1c8ecfcbd33
- a371094f1f0df1edf669362fe2612de10b077ca4
- f345d01974378d443e82cd615ee95620529beb1d
This commit is contained in:
Joachim Fasting 2016-06-02 19:06:34 +02:00
parent 3a7ec4c8f4
commit 8b2fc35987
No known key found for this signature in database
GPG Key ID: 4330820E1E04DCF4

View File

@ -1,9 +1,9 @@
{ stdenv, fetchurl { stdenv, fetchurl
, pkgconfig , pkgconfig
, zlib , zlib
, libjpeg
, libpng , libpng
, libwebp , libjpeg ? null
, libwebp ? null
, libtiff ? null , libtiff ? null
, libXpm ? null , libXpm ? null
, fontconfig , fontconfig
@ -20,7 +20,8 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib fontconfig freetype libjpeg libpng libwebp libtiff libXpm ]; buildInputs = [ zlib fontconfig freetype ];
propagatedBuildInputs = [ libpng libjpeg libwebp libtiff libXpm ];
outputs = [ "dev" "out" "bin" ]; outputs = [ "dev" "out" "bin" ];