mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
enlightenment: add wayland support
This commit is contained in:
parent
ecc968543c
commit
72d4356912
|
@ -13,6 +13,7 @@
|
||||||
, xkeyboard_config
|
, xkeyboard_config
|
||||||
, udisks2
|
, udisks2
|
||||||
|
|
||||||
|
, waylandSupport ? false, wayland-protocols, xwayland
|
||||||
, bluetoothSupport ? true, bluez5
|
, bluetoothSupport ? true, bluez5
|
||||||
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
|
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
|
||||||
}:
|
}:
|
||||||
|
@ -45,6 +46,7 @@ stdenv.mkDerivation rec {
|
||||||
]
|
]
|
||||||
++ lib.optional bluetoothSupport bluez5 # for bluetooth configuration and control
|
++ lib.optional bluetoothSupport bluez5 # for bluetooth configuration and control
|
||||||
++ lib.optional pulseSupport libpulseaudio # for proper audio device control and redirection
|
++ lib.optional pulseSupport libpulseaudio # for proper audio device control and redirection
|
||||||
|
++ lib.optionals waylandSupport [ wayland-protocols xwayland ]
|
||||||
;
|
;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -62,7 +64,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-D systemdunitdir=lib/systemd/user"
|
"-D systemdunitdir=lib/systemd/user"
|
||||||
];
|
] ++ lib.optional waylandSupport "-Dwl=true";
|
||||||
|
|
||||||
passthru.providedSessions = [ "enlightenment" ];
|
passthru.providedSessions = [ "enlightenment" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue