overlays/eww: fix build error

This commit is contained in:
LavaDesu 2023-06-18 23:16:44 +07:00
parent 466a79e619
commit 4e76513668
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 64 additions and 3 deletions

View file

@ -1,6 +1,10 @@
self: super: {
eww = super.eww.overrideAttrs (old: rec {
# Use normal scroll events instead of smooth scroll ( due to https://bugzilla.gnome.org/show_bug.cgi?id=675959 )
patches = old.patches ++ [ ./patches/eww.patch ];
patches = old.patches ++ [
# Use normal scroll events instead of smooth scroll ( due to https://bugzilla.gnome.org/show_bug.cgi?id=675959 )
./patches/eww.patch
# Backport https://github.com/elkowar/eww/pull/711
./patches/eww-box.patch
];
});
}