texinfo: default to texinfo6.7 on darwin

(cherry picked from commit 4e435e6f99)
This commit is contained in:
Jonathan Ringer 2020-10-07 22:20:43 -07:00
parent a64d7d8445
commit 66a2958c25
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
1 changed files with 2 additions and 3 deletions

View File

@ -11687,10 +11687,9 @@ in
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
texinfo4 = texinfo413;
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
texinfo6_5 = callPackage ../development/tools/misc/texinfo/6.5.nix { };
texinfo6_5 = callPackage ../development/tools/misc/texinfo/6.5.nix { }; # needed for allegro
texinfo6 = callPackage ../development/tools/misc/texinfo/6.7.nix { };
# Temporarily use older version on Darwin until it works.
texinfo = if stdenv.isDarwin then texinfo6_5 else texinfo6;
texinfo = texinfo6;
texinfoInteractive = appendToName "interactive" (
texinfo.override { interactive = true; }
);