mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
14 lines
179 B
Nix
14 lines
179 B
Nix
|
{ qtModule
|
||
|
, qtbase
|
||
|
, libwebp
|
||
|
, jasper
|
||
|
, libmng
|
||
|
, libtiff
|
||
|
}:
|
||
|
|
||
|
qtModule {
|
||
|
pname = "qtimageformats";
|
||
|
qtInputs = [ qtbase ];
|
||
|
buildInputs = [ libwebp jasper libmng libtiff ];
|
||
|
}
|