15 lines
221 B
Nix
15 lines
221 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
qtModule,
|
||
|
|
qtbase,
|
||
|
|
}:
|
||
|
|
|
||
|
|
qtModule {
|
||
|
|
pname = "qtmacextras";
|
||
|
|
propagatedBuildInputs = [ qtbase ];
|
||
|
|
meta = with lib; {
|
||
|
|
maintainers = with maintainers; [ periklis ];
|
||
|
|
platforms = platforms.darwin;
|
||
|
|
};
|
||
|
|
}
|