94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
9 lines
310 B
Nix
9 lines
310 B
Nix
{ qtModule, lib, stdenv, qtbase, qtdeclarative, bluez, IOBluetooth }:
|
|
|
|
qtModule {
|
|
pname = "qtconnectivity";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = lib.optional stdenv.isLinux bluez;
|
|
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ IOBluetooth ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|