Unverified Commit 7f1f43f3 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

Merge pull request #132268 from Artturin/enlightwayland

enlightenment: add wayland support
parents b985005c 72d43569
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
, xkeyboard_config
, udisks2

, waylandSupport ? false, wayland-protocols, xwayland
, bluetoothSupport ? true, bluez5
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
}:
@@ -45,6 +46,7 @@ stdenv.mkDerivation rec {
  ]
  ++ lib.optional bluetoothSupport bluez5 # for bluetooth configuration and control
  ++ lib.optional pulseSupport libpulseaudio # for proper audio device control and redirection
  ++ lib.optionals waylandSupport [ wayland-protocols xwayland ]
  ;

  patches = [
@@ -62,7 +64,7 @@ stdenv.mkDerivation rec {

  mesonFlags = [
    "-D systemdunitdir=lib/systemd/user"
  ];
  ] ++ lib.optional waylandSupport "-Dwl=true";

  passthru.providedSessions = [ "enlightenment" ];