Merge pull request #52168 from cdepillabout/add-bluezFull-package

Add bluez full package
This commit is contained in:
Silvan Mosberger 2018-12-17 03:01:49 +01:00 committed by GitHub
commit 9673380261
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -25,9 +25,14 @@ in {
type = types.package;
default = pkgs.bluez;
defaultText = "pkgs.bluez";
example = "pkgs.bluez.override { enableMidi = true; }";
example = "pkgs.bluezFull";
description = ''
Which BlueZ package to use.
<note><para>
Use the <literal>pkgs.bluezFull</literal> package to enable all
bluez plugins.
</para></note>
'';
};

View file

@ -14206,6 +14206,12 @@ in
bluez = bluez5;
bluezFull = bluez.override {
enableWiimote = true;
enableMidi = true;
enableSixaxis = true;
};
inherit (python3Packages) bedup;
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };