about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix
blob: 9725b7babe079595543f44bd4c971717a927a08e (plain) (blame)
1
2
3
4
5
6
7
8
9
{ 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" ];
}