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:
Vladimír Čunát 2018-08-13 21:08:10 +02:00
parent 5b0398dc36
commit 7a22083e12
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -8633,9 +8633,13 @@ with pkgs;
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
texinfo6 = callPackage ../development/tools/misc/texinfo/6.5.nix { };
texinfo = texinfo6;
texinfoInteractive = appendToName "interactive" (
texinfo.override { interactive = true; }
);
texinfoInteractive = appendToName "interactive" (texinfo.override {
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 { };