texinfo: revert to version 6.5 on Darwin
It's basically a partial revert of PR #95910. I chose a temporar-ish solution, maximizing likelihood of fixing this while minimizing rebuilds. (20.09 process is being blocked)
This commit is contained in:
parent
f0cb5c6a15
commit
b23940e514
4
pkgs/development/tools/misc/texinfo/6.5.nix
Normal file
4
pkgs/development/tools/misc/texinfo/6.5.nix
Normal file
@ -0,0 +1,4 @@
|
||||
import ./common.nix {
|
||||
version = "6.5";
|
||||
sha256 = "0qjzvbvnv9003xdrcpi3jp7y68j4hq2ciw9frh2hghh698zlnxvp";
|
||||
}
|
@ -11546,8 +11546,10 @@ 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 = callPackage ../development/tools/misc/texinfo/6.7.nix { };
|
||||
texinfo = texinfo6;
|
||||
# Temporarily use older version on Darwin until it works.
|
||||
texinfo = if stdenv.isDarwin then texinfo6_5 else texinfo6;
|
||||
texinfoInteractive = appendToName "interactive" (
|
||||
texinfo.override { interactive = true; }
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user