summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-09-28 19:00:06 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-09-28 19:52:22 +0200
commit7a003eb9d52bc0210308af473e706c065a21aa40 (patch)
tree5962acefd7af57fc00ec978764431ddf18136e7f /pkgs
parentff5cf3abff4f1a24d4a8379475c895ccd001c734 (diff)
downloadnixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.tar
nixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.tar.gz
nixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.tar.bz2
nixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.tar.lz
nixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.tar.xz
nixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.tar.zst
nixpkgs-7a003eb9d52bc0210308af473e706c065a21aa40.zip
mesa_drivers: work around #16779
This works around missing newer wayland symbols when running
some older packages on a system with updated opengl drivers.
We have no good solution yet, unfortunately. This commit might
break packages that rely on new wayland features, but those
should be a minority.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d467382cfaa..e301871b9dc 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -8314,6 +8314,7 @@ in
   mesa_drivers = mesaDarwinOr (
     let mo = mesa_noglu.override {
       grsecEnabled = config.grsecurity or false;
+      wayland = wayland_1_9; # work-around for #16779
     };
     in mo.drivers
   );