mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 17:10:48 +00:00
texinfoInteractive: fixup build by using older perl
I don't really have a mind for very long investigations why their test suite is broken in this respect.
This commit is contained in:
parent
5b0398dc36
commit
7a22083e12
|
@ -8633,9 +8633,13 @@ with pkgs;
|
||||||
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
|
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
|
||||||
texinfo6 = callPackage ../development/tools/misc/texinfo/6.5.nix { };
|
texinfo6 = callPackage ../development/tools/misc/texinfo/6.5.nix { };
|
||||||
texinfo = texinfo6;
|
texinfo = texinfo6;
|
||||||
texinfoInteractive = appendToName "interactive" (
|
texinfoInteractive = appendToName "interactive" (texinfo.override {
|
||||||
texinfo.override { interactive = true; }
|
interactive = true;
|
||||||
);
|
# doCheck = true -> some xlocale.h problem with perl 5.28.0
|
||||||
|
# (it's mistakenly trying to include the non-existent header)
|
||||||
|
perl = perl526;
|
||||||
|
buildPackages = buildPackages // { perl = buildPackages.perl526; };
|
||||||
|
});
|
||||||
|
|
||||||
texi2html = callPackage ../development/tools/misc/texi2html { };
|
texi2html = callPackage ../development/tools/misc/texi2html { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue