summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtimageformats.nix
blob: 50420aaa7e4517b6b927f8d2308287fbd63f7f23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ qtModule
, qtbase
, libwebp
, jasper
, libmng
, libtiff
}:

qtModule {
  pname = "qtimageformats";
  propagatedBuildInputs = [ qtbase ];
  buildInputs = [ libwebp jasper libmng libtiff ];
}