20 lines
245 B
Nix
20 lines
245 B
Nix
|
{ lib
|
||
|
, qtModule
|
||
|
, qtbase
|
||
|
, libwebp
|
||
|
, jasper
|
||
|
, libmng
|
||
|
, libtiff
|
||
|
}:
|
||
|
|
||
|
qtModule {
|
||
|
pname = "qtimageformats";
|
||
|
propagatedBuildInputs = [
|
||
|
qtbase libwebp
|
||
|
] ++ lib.optionals (!jasper.meta.broken) [
|
||
|
jasper
|
||
|
] ++ [
|
||
|
libmng libtiff
|
||
|
];
|
||
|
}
|