paper-plane: Fix eval after gtk4 4.12.5 update

See ac193f0684, which removes all gtk4 patches.

Fixes 4ccedfae09.
Fixes https://gist.github.com/GrahamcOfBorg/594457cf1fc2b56ce99e5ac1add2e949.
This commit is contained in:
Bobby Rong 2024-02-12 22:20:59 +08:00
parent dd864dc7dd
commit 0e123540e5
No known key found for this signature in database

View File

@ -33,7 +33,7 @@ let
# Paper Plane requires a patch to the gtk4, but may be removed later
# https://github.com/paper-plane-developers/paper-plane/tree/main?tab=readme-ov-file#prerequisites
gtk4-paperplane = gtk4.overrideAttrs (prev: {
patches = prev.patches ++ [ "${src}/build-aux/gtk-reversed-list.patch" ];
patches = (prev.patches or []) ++ [ "${src}/build-aux/gtk-reversed-list.patch" ];
});
wrapPaperPlaneHook = wrapGAppsHook.override {
gtk3 = gtk4-paperplane;