20 lines
218 B
Nix
20 lines
218 B
Nix
|
|
{
|
||
|
|
qtModule,
|
||
|
|
qtbase,
|
||
|
|
libwebp,
|
||
|
|
jasper,
|
||
|
|
libmng,
|
||
|
|
libtiff,
|
||
|
|
}:
|
||
|
|
|
||
|
|
qtModule {
|
||
|
|
pname = "qtimageformats";
|
||
|
|
propagatedBuildInputs = [ qtbase ];
|
||
|
|
buildInputs = [
|
||
|
|
libwebp
|
||
|
|
jasper
|
||
|
|
libmng
|
||
|
|
libtiff
|
||
|
|
];
|
||
|
|
}
|