forked from mirrors/nixpkgs
11 lines
206 B
Nix
11 lines
206 B
Nix
|
{ qtSubmodule, qtbase, lib }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qtmacextras";
|
||
|
qtInputs = [ qtbase ];
|
||
|
meta = with lib; {
|
||
|
maintainers = with maintainers; [ periklis ];
|
||
|
platforms = platforms.darwin;
|
||
|
};
|
||
|
}
|