a66bca1520
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
17 lines
323 B
Nix
17 lines
323 B
Nix
{ 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 ];
|
|
}
|