kwin: Add overlays with 5511 patch

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

View file

@ -17,4 +17,8 @@
kdenetwork-filesharing # Use to share with samba from dolphin
samba4Full # Required for kdenetwork-filesharing
];
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
];
});
});
}