lol

qt5.qtimageformats: add dependencies (#255044)

In particular, this unvendors libwebp which was most likely affected by CVE-2023-4863.

authored by

[object Object] and committed by
GitHub
72e39628 552aec32

+8 -2
+8 -2
pkgs/development/libraries/qt-5/modules/qtimageformats.nix
··· 1 - { qtModule, qtbase, libtiff }: 1 + { qtModule 2 + , qtbase 3 + , libwebp 4 + , jasper 5 + , libmng 6 + , libtiff 7 + }: 2 8 3 9 qtModule { 4 10 pname = "qtimageformats"; 5 11 qtInputs = [ qtbase ]; 6 - propagatedBuildInputs = [ libtiff ]; 12 + propagatedBuildInputs = [ libwebp jasper libmng libtiff ]; 7 13 }