blahtexml: replace texlive.combined.scheme-full with texliveFull

This commit is contained in:
Vincenzo Mantova 2023-11-04 20:02:27 +00:00
parent 1c96a6d381
commit 9ae3cdf7e7

View file

@ -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 =