ae91cbe6cc
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
10 lines
200 B
Nix
10 lines
200 B
Nix
{ lib, qtModule, qtbase }:
|
|
|
|
qtModule {
|
|
name = "qtmacextras";
|
|
qtInputs = [ qtbase ];
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ periklis ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|