2023-05-24 13:37:59 +00:00
|
|
|
{ qtModule, lib, stdenv, qtbase, qtdeclarative, bluez, IOBluetooth }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
qtModule {
|
2021-05-28 09:39:13 +00:00
|
|
|
pname = "qtconnectivity";
|
2020-04-24 23:36:52 +00:00
|
|
|
qtInputs = [ qtbase qtdeclarative ];
|
2021-02-05 17:12:51 +00:00
|
|
|
buildInputs = lib.optional stdenv.isLinux bluez;
|
2023-05-24 13:37:59 +00:00
|
|
|
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ IOBluetooth ];
|
2020-04-24 23:36:52 +00:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
|
|
|
}
|