From 72e396285b47b003c24ea02c282fb3d32e064bd0 Mon Sep 17 00:00:00 2001 From: "[object Object]" Date: Sat, 16 Sep 2023 00:06:24 -0700 Subject: [PATCH] qt5.qtimageformats: add dependencies (#255044) In particular, this unvendors libwebp which was most likely affected by CVE-2023-4863. --- .../libraries/qt-5/modules/qtimageformats.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qt-5/modules/qtimageformats.nix b/pkgs/development/libraries/qt-5/modules/qtimageformats.nix index 52fa4d4ba8ff..402f2ce06629 100644 --- a/pkgs/development/libraries/qt-5/modules/qtimageformats.nix +++ b/pkgs/development/libraries/qt-5/modules/qtimageformats.nix @@ -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 ]; }