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