2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
with pkgs; {
|
2024-05-02 00:46:19 +00:00
|
|
|
gpm = callPackage ./. {
|
|
|
|
withNcurses = false; # Keep curses disabled for lack of value
|
|
|
|
|
|
|
|
# latest 6.8 mysteriously fails to parse '@headings single':
|
|
|
|
# https://lists.gnu.org/archive/html/bug-texinfo/2021-09/msg00011.html
|
|
|
|
texinfo = buildPackages.texinfo6_7;
|
|
|
|
};
|
|
|
|
gpm-ncurses = gpm.override { withNcurses = true; };
|
|
|
|
}
|