about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix
blob: 36a736d03dc5b0d42f7766733f00a28c77a8eec5 (plain) (blame)
1
2
3
4
5
6
7
8
{ qtModule, stdenv, qtbase, qtdeclarative, bluez }:

qtModule {
  name = "qtconnectivity";
  qtInputs = [ qtbase qtdeclarative ];
  buildInputs = stdenv.lib.optional stdenv.isLinux bluez;
  outputs = [ "out" "dev" "bin" ];
}