core/pkgs/by-name/te/texinfo/packages.nix

15 lines
461 B
Nix
Raw Normal View History

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
texinfo413 = callPackage ./4.13a.nix { };
texinfo4 = texinfo413;
texinfo5 = callPackage ./5.2.nix { };
texinfo6_5 = callPackage ./6.5.nix { }; # needed for allegro
texinfo6_7 = callPackage ./6.7.nix { }; # needed for gpm, iksemel and fwknop
texinfo6 = callPackage ./6.8.nix { };
texinfo7 = callPackage ./7.0.nix { };
texinfo = texinfo7;
texinfoInteractive = texinfo.override { interactive = true; };
}