summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2
diff options
context:
space:
mode:
authorMatthew Van Gundy <matt@singlethink.net>2021-03-14 11:24:12 -0700
committerMatthew Van Gundy <matt@singlethink.net>2021-03-14 11:28:01 -0700
commit3d5c4053cacd9a04790bac495752e8fc92c01867 (patch)
tree5e7df817e2b6624a96fab7b04a2f4482d073dec1 /pkgs/desktops/gnome-2
parent1ec933a65f6e2743217c51f0794005495efc8778 (diff)
downloadnixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.tar
nixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.tar.gz
nixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.tar.bz2
nixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.tar.lz
nixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.tar.xz
nixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.tar.zst
nixpkgs-3d5c4053cacd9a04790bac495752e8fc92c01867.zip
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.
Diffstat (limited to 'pkgs/desktops/gnome-2')
-rw-r--r--pkgs/desktops/gnome-2/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/desktops/gnome-2/default.nix b/pkgs/desktops/gnome-2/default.nix
index 4212fa68bd4..50222b386c8 100644
--- a/pkgs/desktops/gnome-2/default.nix
+++ b/pkgs/desktops/gnome-2/default.nix
@@ -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 { };