summary refs log tree commit diff
path: root/pkgs/servers/x11
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 /pkgs/servers/x11
parent2674c54303eb3dd0040f8cc109b589e94812b753 (diff)
downloadnixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar
nixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.gz
nixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.bz2
nixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.lz
nixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.xz
nixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.tar.zst
nixpkgs-cfe4ede98b9503a9b709f95400e86a4850701a1f.zip
xorg.xwayland: add eglstream support
Diffstat (limited to 'pkgs/servers/x11')
-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 06f54fd5207..d033f211c3a 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"