about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix
blob: 81efb4bee04b520f0ff6f61355f940f8031323cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ qtModule, lib, stdenv, qtbase, qtdeclarative, bluez, IOBluetooth }:

qtModule {
  pname = "qtconnectivity";
  buildInputs = lib.optional stdenv.isLinux bluez;
  propagatedBuildInputs = [
    qtbase
    qtdeclarative
  ] ++ lib.optionals stdenv.isDarwin [
    IOBluetooth
  ];
  outputs = [ "out" "dev" "bin" ];
}