mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Revert "Revert "texinfo: revert to version 6.5 on Darwin""
This reverts commit 578b2b92de
This commit is contained in:
parent
5ab5783e4f
commit
93e135517a
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";
|
||||
}
|
@ -11687,8 +11687,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