summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtconnectivity.nix
blob: 976fd626f5d1bcdd5402b094bfe8d619de3d0efb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ qtModule
, lib
, stdenv
, qtbase
, qtdeclarative
, bluez
, pkg-config
, IOBluetooth
, PCSC
}:

qtModule {
  pname = "qtconnectivity";
  qtInputs = [ qtbase qtdeclarative ];
  nativeBuildInputs = [ pkg-config ];
  buildInputs = lib.optionals stdenv.isLinux [ bluez ];
  propagatedBuildInputs = lib.optionals stdenv.isDarwin [ IOBluetooth PCSC ];
}