mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gnome3.mutter: fix segfault in dri_flush_front_buffer()
More details:
56ddaaa380
This commit is contained in:
parent
2d708d3524
commit
7ddd49a86e
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ fetchurl, substituteAll, stdenv, pkgconfig, gnome3, gettext, gobject-introspection, upower, cairo
|
||||
{ fetchurl, fetchpatch, substituteAll, stdenv, pkgconfig, gnome3, gettext, gobject-introspection, upower, cairo
|
||||
, pango, cogl, clutter, libstartup_notification, zenity, libcanberra-gtk3
|
||||
, ninja, xkeyboard_config, libxkbfile, libxkbcommon, libXtst, libinput
|
||||
, gsettings-desktop-schemas, glib, gtk3, gnome-desktop
|
||||
|
@ -55,6 +55,13 @@ stdenv.mkDerivation rec {
|
|||
src = ./fix-paths.patch;
|
||||
inherit zenity;
|
||||
})
|
||||
# Fix a segmentation fault in dri_flush_front_buffer() upon
|
||||
# suspend/resume. This change should be removed when Mutter
|
||||
# is updated to 3.34.
|
||||
(fetchpatch {
|
||||
url = "https://gitlab.gnome.org/GNOME/mutter/commit/8307c0f7ab60760de53f764e6636893733543be8.diff";
|
||||
sha256 = "1hzfva71xdqvvnx5smjsrjlgyrmc7dj94mpylkak0gwda5si0h2n";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
|
|
Loading…
Reference in a new issue