8 lines
136 B
Nix
8 lines
136 B
Nix
{ qtModule, qtbase, libtiff }:
|
|
|
|
qtModule {
|
|
name = "qtimageformats";
|
|
qtInputs = [ qtbase ];
|
|
propagatedBuildInputs = [ libtiff ];
|
|
}
|