texlive: use perl 5.24

See #26890.
This commit is contained in:
Gabriel Ebner 2018-01-01 09:47:39 +01:00
parent 70e9b60b33
commit 7dcc307241

View File

@ -4,7 +4,7 @@
*/ */
{ stdenv, lib, fetchurl, runCommand, writeText, buildEnv { stdenv, lib, fetchurl, runCommand, writeText, buildEnv
, callPackage, ghostscriptX, harfbuzz, poppler_min , callPackage, ghostscriptX, harfbuzz, poppler_min
, makeWrapper, perl522, python, ruby , makeWrapper, python, ruby, perl
, useFixedHashes ? true , useFixedHashes ? true
, recurseIntoAttrs , recurseIntoAttrs
}: }:
@ -28,8 +28,7 @@ let
# function for creating a working environment from a set of TL packages # function for creating a working environment from a set of TL packages
combine = import ./combine.nix { combine = import ./combine.nix {
inherit bin combinePkgs buildEnv fastUnique lib makeWrapper writeText inherit bin combinePkgs buildEnv fastUnique lib makeWrapper writeText
stdenv python ruby; stdenv python ruby perl;
perl = perl522; # avoid issues like #26890, probably remove after texlive upgrade
ghostscript = ghostscriptX; # could be without X, probably, but we use X above ghostscript = ghostscriptX; # could be without X, probably, but we use X above
}; };