apvlv: fix build with poppler 0.73.0

Poppler was upgraded in [0] and therefore the build broke, as
poppler/goo/gtypes.h was moved into poppler/goo/gfile.h [1].

Upstream issue is [2].

[0] https://github.com/NixOS/nixpkgs/commit/7757e43fcb15f3b3e21187787edaad54614ec7e6
[1] https://gitlab.freedesktop.org/poppler/poppler/commit/ef3ef702bc3dc845731e43215400448c5324efd4
[2] https://github.com/naihe2010/apvlv/issues/28

+14
+1
pkgs/applications/misc/apvlv/default.nix
··· 41 41 url = "https://github.com/naihe2010/apvlv/commit/a3a895772a27d76dab0c37643f0f4c73f9970e62.patch"; 42 42 sha256 = "1fpc7wr1ajilvwi5gjsy5g9jcx4bl03gp5dmajg90ljqbhwz2bfi"; 43 43 }) 44 + ./fix-build-with-poppler-0.73.0.patch 44 45 ]; 45 46 46 47 installPhase = ''
+13
pkgs/applications/misc/apvlv/fix-build-with-poppler-0.73.0.patch
··· 1 + diff --git a/src/ApvlvPdf.cc b/src/ApvlvPdf.cc 2 + index 765b112..83d133f 100644 3 + --- a/src/ApvlvPdf.cc 4 + +++ b/src/ApvlvPdf.cc 5 + @@ -29,7 +29,7 @@ 6 + #include "ApvlvPdf.h" 7 + 8 + #ifndef POPPLER_WITH_GDK 9 + -#include <goo/gtypes.h> 10 + +#include <goo/gfile.h> 11 + 12 + static void 13 + copy_cairo_surface_to_pixbuf (cairo_surface_t *surface,