7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
13 lines
341 B
Nix
13 lines
341 B
Nix
{ qtModule, lib, stdenv, qtbase, qtdeclarative, bluez, IOBluetooth }:
|
|
|
|
qtModule {
|
|
pname = "qtconnectivity";
|
|
buildInputs = lib.optional stdenv.hostPlatform.isLinux bluez;
|
|
propagatedBuildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
IOBluetooth
|
|
];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|