Merge pull request #132268 from Artturin/enlightwayland

enlightenment: add wayland support

authored by Jörg Thalheim and committed by GitHub 7f1f43f3 b985005c

+3 -1
+3 -1
pkgs/desktops/enlightenment/enlightenment/default.nix
··· 13 , xkeyboard_config 14 , udisks2 15 16 , bluetoothSupport ? true, bluez5 17 , pulseSupport ? !stdenv.isDarwin, libpulseaudio 18 }: ··· 45 ] 46 ++ lib.optional bluetoothSupport bluez5 # for bluetooth configuration and control 47 ++ lib.optional pulseSupport libpulseaudio # for proper audio device control and redirection 48 ; 49 50 patches = [ ··· 62 63 mesonFlags = [ 64 "-D systemdunitdir=lib/systemd/user" 65 - ]; 66 67 passthru.providedSessions = [ "enlightenment" ]; 68
··· 13 , xkeyboard_config 14 , udisks2 15 16 + , waylandSupport ? false, wayland-protocols, xwayland 17 , bluetoothSupport ? true, bluez5 18 , pulseSupport ? !stdenv.isDarwin, libpulseaudio 19 }: ··· 46 ] 47 ++ lib.optional bluetoothSupport bluez5 # for bluetooth configuration and control 48 ++ lib.optional pulseSupport libpulseaudio # for proper audio device control and redirection 49 + ++ lib.optionals waylandSupport [ wayland-protocols xwayland ] 50 ; 51 52 patches = [ ··· 64 65 mesonFlags = [ 66 "-D systemdunitdir=lib/systemd/user" 67 + ] ++ lib.optional waylandSupport "-Dwl=true"; 68 69 passthru.providedSessions = [ "enlightenment" ]; 70