From 9ae3cdf7e77088c25f9ecaf59a22e90695bb703d Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 4 Nov 2023 20:02:27 +0000 Subject: [PATCH] blahtexml: replace texlive.combined.scheme-full with texliveFull --- pkgs/tools/typesetting/tex/blahtexml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/typesetting/tex/blahtexml/default.nix b/pkgs/tools/typesetting/tex/blahtexml/default.nix index c71e983c5633..ce071c7006f2 100644 --- a/pkgs/tools/typesetting/tex/blahtexml/default.nix +++ b/pkgs/tools/typesetting/tex/blahtexml/default.nix @@ -1,4 +1,4 @@ -{ fetchFromGitHub, lib, stdenv, libiconv, texlive, xercesc }: +{ fetchFromGitHub, lib, stdenv, libiconv, texliveFull, xercesc }: stdenv.mkDerivation rec { pname = "blahtexml"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { outputs = [ "out" "doc" ]; - nativeBuildInputs = [ texlive.combined.scheme-full ]; # scheme-full needed for ucs package + nativeBuildInputs = [ texliveFull ]; # scheme-full needed for ucs package buildInputs = [ xercesc ] ++ lib.optionals stdenv.isDarwin [ libiconv ]; buildFlags =