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 { };
|
||||
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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user