Configure gnome2.gtksourceview to build with autoconf 2.69

`nix-build -A gnome2.gtksourceview` fails to build with autoconf 2.70 with the following error:
...
autoreconf: running: intltoolize --copy --force
You should update your 'aclocal.m4' by running aclocal.
autoreconf: running: gtkdocize --copy
Can't exec "gtkdocize": No such file or directory at /nix/store/hm8xfxprfk4l1msb9hpjwgydilbqlvl5-autoconf-2.70/share/autoconf/Autom4te/FileUtils.pm line 293.
autoreconf: error: gtkdocize failed with exit status: 2

gnome2.gtksourceview builds successfully with autoconf 2.69.
This commit is contained in:
Matthew Van Gundy 2021-03-14 11:24:12 -07:00
parent 1ec933a65f
commit 3d5c4053ca
No known key found for this signature in database
GPG Key ID: 7DD31E7AC452100D

View File

@ -58,7 +58,9 @@ lib.makeScope pkgs.newScope (self: with self; {
# Removed from recent GNOME releases, but still required
scrollkeeper = callPackage ./desktop/scrollkeeper { };
gtksourceview = callPackage ./desktop/gtksourceview { };
gtksourceview = callPackage ./desktop/gtksourceview {
autoreconfHook = pkgs.autoreconfHook269;
};
vte = callPackage ./desktop/vte { };