c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
18 lines
349 B
Nix
18 lines
349 B
Nix
{ 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 ];
|
|
}
|