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

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