Skip to content

Commit 81e46db

Browse files
committedJul 1, 2017
texlive: wrap scripts by older perl
Fixes #26890.
1 parent 9c05499 commit 81e46db

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎pkgs/tools/typesetting/tex/texlive/default.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
{ stdenv, lib, fetchurl, runCommand, writeText, buildEnv
66
, callPackage, ghostscriptX, harfbuzz, poppler_min
7-
, makeWrapper, perl, python, ruby
7+
, makeWrapper, perl522, python, ruby
88
, useFixedHashes ? true
99
, recurseIntoAttrs
1010
}:
@@ -28,7 +28,8 @@ let
2828
# function for creating a working environment from a set of TL packages
2929
combine = import ./combine.nix {
3030
inherit bin combinePkgs buildEnv fastUnique lib makeWrapper writeText
31-
perl stdenv python ruby;
31+
stdenv python ruby;
32+
perl = perl522; # avoid issues like #26890, probably remove after texlive upgrade
3233
};
3334

3435
# the set of TeX Live packages, collections, and schemes; using upstream naming

0 commit comments

Comments
 (0)
Please sign in to comment.