Add overlay for mutter triple-buffering

This commit is contained in:
2023-05-20 14:14:39 +01:00
parent 663f2ac184
commit 23a37e6149
2 changed files with 23 additions and 10 deletions

11
overlays/gnome.nix Normal file
View File

@ -0,0 +1,11 @@
self: super:
{
gnome = super.gnome.overrideScope' (gself: gsuper: {
mutter = gsuper.mutter.overrideAttrs (oldAttrs: {
src = super.fetchurl {
url = "https://gitlab.gnome.org/Community/Ubuntu/mutter/-/archive/triple-buffering-v4-43/mutter-triple-buffering-v4-43.tar.gz";
sha256 = "e+pN+lZs3ZLdVkh7PAB1xUWqjhep9X6uKbU2GgEZ6aQ=";
};
});
});
}