kwin: Add overlays with 5511 patch
This commit is contained in:
parent
d0e50b2ce6
commit
0dc2cdd7c4
3 changed files with 2040 additions and 0 deletions
|
@ -16,4 +16,8 @@
|
||||||
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
|
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
|
||||||
discover
|
discover
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import ../overlays/kwin)
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
2027
overlays/kwin/5511.patch
Normal file
2027
overlays/kwin/5511.patch
Normal file
File diff suppressed because it is too large
Load diff
9
overlays/kwin/default.nix
Normal file
9
overlays/kwin/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in a new issue