qt5.qtimageformats: add dependencies (#255044)

In particular, this unvendors libwebp which was most likely affected by CVE-2023-4863.
This commit is contained in:
[object Object] 2023-09-16 00:06:24 -07:00 committed by GitHub
parent 552aec32c0
commit 72e396285b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,13 @@
{ qtModule, qtbase, libtiff }:
{ qtModule
, qtbase
, libwebp
, jasper
, libmng
, libtiff
}:
qtModule {
pname = "qtimageformats";
qtInputs = [ qtbase ];
propagatedBuildInputs = [ libtiff ];
propagatedBuildInputs = [ libwebp jasper libmng libtiff ];
}