12 lines
379 B
Nix
12 lines
379 B
Nix
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-45/mutter-triple-buffering-v4-45.tar.gz";
|
|
sha256 = "tN+zQ5brk+hc+louIipqPV/Bqft42ghKOzjZZMj5Q8A=";
|
|
};
|
|
});
|
|
});
|
|
}
|