mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
8 lines
137 B
Nix
8 lines
137 B
Nix
{ qtModule, qtbase, libtiff }:
|
|
|
|
qtModule {
|
|
pname = "qtimageformats";
|
|
qtInputs = [ qtbase ];
|
|
propagatedBuildInputs = [ libtiff ];
|
|
}
|