about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2019-05-01 16:46:28 +0200
committerworldofpeace <worldofpeace@protonmail.ch>2019-11-19 15:34:39 -0500
commitcfe4ede98b9503a9b709f95400e86a4850701a1f (patch)
treef4e1845b31358f2c4dece8332e4698ff617d140f
parent2674c54303eb3dd0040f8cc109b589e94812b753 (diff)
downloadnixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar
nixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.gz
nixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.bz2
nixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.lz
nixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.xz
nixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.zst
nixlib-cfe4ede98b9503a9b709f95400e86a4850701a1f.zip
xorg.xwayland: add eglstream support
-rw-r--r--pkgs/servers/x11/xorg/xwayland.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/servers/x11/xorg/xwayland.nix b/pkgs/servers/x11/xorg/xwayland.nix
index 06f54fd52073..d033f211c3a5 100644
--- a/pkgs/servers/x11/xorg/xwayland.nix
+++ b/pkgs/servers/x11/xorg/xwayland.nix
@@ -1,16 +1,18 @@
-{ stdenv, wayland, wayland-protocols, xorgserver, xkbcomp, xkeyboard_config, epoxy, libxslt, libunwind, makeWrapper }:
+{ stdenv, wayland, wayland-protocols, xorgserver, xkbcomp, xkeyboard_config, epoxy, libxslt, libunwind, makeWrapper, egl-wayland }:
 
 with stdenv.lib;
 
 xorgserver.overrideAttrs (oldAttrs: {
 
   name = "xwayland-${xorgserver.version}";
+  buildInputs = oldAttrs.buildInputs ++ [ egl-wayland ];
   propagatedBuildInputs = oldAttrs.propagatedBuildInputs
     ++ [wayland wayland-protocols epoxy libxslt makeWrapper libunwind];
   configureFlags = [
     "--disable-docs"
     "--disable-devel-docs"
     "--enable-xwayland"
+    "--enable-xwayland-eglstream"
     "--disable-xorg"
     "--disable-xvfb"
     "--disable-xnest"