mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
gd: propagate image format dependencies
Afterf8bdd7969d
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: -972c438c03
-2113b7389a
-94286527ac
-a371094f1f
-f345d01974
This commit is contained in:
parent
3a7ec4c8f4
commit
8b2fc35987
@ -1,9 +1,9 @@
|
||||
{ stdenv, fetchurl
|
||||
, pkgconfig
|
||||
, zlib
|
||||
, libjpeg
|
||||
, libpng
|
||||
, libwebp
|
||||
, libjpeg ? null
|
||||
, libwebp ? null
|
||||
, libtiff ? null
|
||||
, libXpm ? null
|
||||
, fontconfig
|
||||
@ -20,7 +20,8 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
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" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user