nixpkgs/pkgs/development/libraries/qt-6/modules/qtimageformats.nix
2022-05-23 09:37:40 +08:00

14 lines
179 B
Nix

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