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