mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-18 10:47:31 -08:00
13 lines
418 B
Nix
13 lines
418 B
Nix
self: super: {
|
|
gnome = super.gnome.overrideScope (gnomeFinal: gnomePrev: {
|
|
mutter = gnomePrev.mutter.overrideAttrs ( old: {
|
|
src = super.fetchgit {
|
|
url = "https://gitlab.gnome.org/vanvugt/mutter.git";
|
|
# GNOME 46: triple-buffering-v4-46
|
|
rev = "94f500589efe6b04aa478b3df8322eb81307d89f";
|
|
sha256 = "sha256-fkPjB/5DPBX06t7yj0Rb3UEuu5b9mu3aS+jhH18+lpI=";
|
|
};
|
|
});
|
|
});
|
|
}
|