nixos/overlays/kwin/default.nix

9 lines
290 B
Nix
Raw Normal View History

2024-04-19 18:17:11 +02:00
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
];
});
});
}