overlay/wlroots: override mesa

This commit is contained in:
LavaDesu 2022-10-10 16:38:18 +07:00
parent 2b4449f4bc
commit 3e5e7c03fe
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 8 additions and 0 deletions

View file

@ -4,5 +4,6 @@ builtins.map (path: import path) [
./picom.nix
./rofi.nix
./steam.nix
./wlroots.nix
./xinit.nix
]

7
overlays/wlroots.nix Normal file
View file

@ -0,0 +1,7 @@
self: super: {
wlroots = super.wlroots.override {
mesa = super.mesa.overrideAttrs(o: {
patches = o.patches ++ [ ../hosts/blossom/mesa_mr_17182.patch ];
});
};
}