11 lines
218 B
Nix
11 lines
218 B
Nix
{ qtSubmodule, qtbase, qtdeclarative }:
|
|
|
|
qtSubmodule {
|
|
name = "qtconnectivity";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "Bluetooth"
|
|
fixQtModuleCMakeConfig "Nfc"
|
|
'';
|
|
}
|