mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +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 ];
|
|
}
|