enlightenment.enlightenment: bluetooth support
This commit is contained in:
parent
722b2158a6
commit
3595e93f6f
|
@ -1,7 +1,9 @@
|
|||
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, efl,
|
||||
xcbutilkeysyms, libXrandr, libXdmcp, libxcb, libffi, pam, alsaLib,
|
||||
luajit, bzip2, libpthreadstubs, gdbm, libcap, mesa,
|
||||
xkeyboard_config, pcre
|
||||
xkeyboard_config, pcre,
|
||||
|
||||
bluetoothSupport ? true, bluez5,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -36,8 +38,10 @@ stdenv.mkDerivation rec {
|
|||
pcre
|
||||
mesa
|
||||
xkeyboard_config
|
||||
] ++
|
||||
stdenv.lib.optionals stdenv.isLinux [ libcap ];
|
||||
]
|
||||
++ stdenv.lib.optional stdenv.isLinux libcap
|
||||
++ stdenv.lib.optional bluetoothSupport bluez5
|
||||
;
|
||||
|
||||
patches = [
|
||||
# Some programs installed by enlightenment (to set the cpu frequency,
|
||||
|
|
Loading…
Reference in New Issue