fe0ab944db
The module definitions are factored out and shared between qt56 and qt59. The symlink farm which was created during builds is no longer needed.
11 lines
200 B
Nix
11 lines
200 B
Nix
{ qtModule, qtbase, lib }:
|
|
|
|
qtModule {
|
|
name = "qtmacextras";
|
|
qtInputs = [ qtbase ];
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ periklis ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|