nixpkgs/pkgs/development/libraries/qt-5/5.6/qtconnectivity.nix
2016-05-09 10:01:03 -05:00

11 lines
218 B
Nix

{ qtSubmodule, qtbase, qtdeclarative }:
qtSubmodule {
name = "qtconnectivity";
qtInputs = [ qtbase qtdeclarative ];
postFixup = ''
fixQtModuleCMakeConfig "Bluetooth"
fixQtModuleCMakeConfig "Nfc"
'';
}