gpm: fix texinfo dependency platform when cross-compiling

texinfo is a nativeBuildInput, but it is overridden in all-packages.nix,
which breaks splicing. Therefore, buildPackages.texinfo needs to be used
explicitly in the override.

This wasn't actually causing any problems because texinfo's scripts were using
build platform Perl shebangs. Once texinfo was fixed, gpm started failing to
cross-compile.
This commit is contained in:
Ben Wolsieffer 2022-06-20 13:42:57 -04:00
parent 30bfac6095
commit 350e8ad0e4

View File

@ -23224,7 +23224,7 @@ with pkgs;
# latest 6.8 mysteriously fails to parse '@headings single':
# https://lists.gnu.org/archive/html/bug-texinfo/2021-09/msg00011.html
texinfo = texinfo6_7;
texinfo = buildPackages.texinfo6_7;
};
gpm-ncurses = gpm.override { inherit ncurses; };