qtbase: Move libtiff dependency from qtbase to qtimageformats

This commit is contained in:
Chuck 2020-08-24 13:48:57 -07:00 committed by Frederik Rietdijk
parent e132216194
commit 4bac8a7a00
2 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,7 @@
darwin, libiconv,
dbus, fontconfig, freetype, glib, harfbuzz, icu, libX11, libXcomposite,
libXcursor, libXext, libXi, libXrender, libinput, libjpeg, libpng, libtiff,
libXcursor, libXext, libXi, libXrender, libinput, libjpeg, libpng,
libxcb, libxkbcommon, libxml2, libxslt, openssl, pcre16, pcre2, sqlite, udev,
xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilrenderutil, xcbutilwm,
zlib,
@ -48,7 +48,7 @@ stdenv.mkDerivation {
harfbuzz icu
# Image formats
libjpeg libpng libtiff
libjpeg libpng
(if compareVersion "5.9.0" < 0 then pcre16 else pcre2)
]
++ (

View File

@ -1,6 +1,7 @@
{ qtModule, qtbase }:
{ qtModule, qtbase, libtiff }:
qtModule {
name = "qtimageformats";
qtInputs = [ qtbase ];
propagatedBuildInputs = [ libtiff ];
}