mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
9 lines
225 B
Nix
9 lines
225 B
Nix
{ qtModule, stdenv, qtbase, qtdeclarative, bluez }:
|
|
|
|
qtModule {
|
|
name = "qtconnectivity";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = stdenv.lib.optional stdenv.isLinux bluez;
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|