22 lines
287 B
Nix
22 lines
287 B
Nix
{
|
|
qtModule,
|
|
lib,
|
|
stdenv,
|
|
qtbase,
|
|
qtdeclarative,
|
|
bluez,
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtconnectivity";
|
|
buildInputs = lib.optional stdenv.hostPlatform.isLinux bluez;
|
|
propagatedBuildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"bin"
|
|
];
|
|
}
|