kwin: Add overlays with 5511 patch

This commit is contained in:
Florian RICHER 2024-04-19 18:17:11 +02:00
parent d0e50b2ce6
commit 0dc2cdd7c4
3 changed files with 2040 additions and 0 deletions

View file

@ -16,4 +16,8 @@
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
discover
];
nixpkgs.overlays = [
(import ../overlays/kwin)
];
}

2027
overlays/kwin/5511.patch Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,9 @@
self: super: {
kdePackages = super.kdePackages.overrideScope (kde-self: kde-super: rec {
kwin = kde-super.kwin.overrideAttrs (oldAttrs: rec {
patches = oldAttrs.patches ++ [
./5511.patch # https://invent.kde.org/plasma/kwin/-/merge_requests/5511
];
});
});
}