2022-06-16 17:23:12 +00:00
|
|
|
{ qtModule
|
|
|
|
, lib
|
|
|
|
, stdenv
|
|
|
|
, qtbase
|
|
|
|
, qtdeclarative
|
|
|
|
, bluez
|
|
|
|
, pkg-config
|
2022-12-17 10:02:37 +00:00
|
|
|
, PCSC
|
2022-06-16 17:23:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
qtModule {
|
|
|
|
pname = "qtconnectivity";
|
|
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2022-12-17 10:02:37 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ bluez ];
|
|
|
|
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ PCSC ];
|
2022-06-16 17:23:12 +00:00
|
|
|
}
|