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