mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
8 lines
136 B
Nix
8 lines
136 B
Nix
{ qtModule, qtbase, libtiff }:
|
|
|
|
qtModule {
|
|
name = "qtimageformats";
|
|
qtInputs = [ qtbase ];
|
|
propagatedBuildInputs = [ libtiff ];
|
|
}
|