From 8a3fcf9c9e89ba9ea097436186253e5f2bfb30a3 Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 23 May 2026 22:02:04 +0100 Subject: [PATCH] blahtexml: build with texliveBasic instead of texliveFull --- pkgs/by-name/bl/blahtexml/package.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bl/blahtexml/package.nix b/pkgs/by-name/bl/blahtexml/package.nix index 909010fef9c9..860fd4abbaa6 100644 --- a/pkgs/by-name/bl/blahtexml/package.nix +++ b/pkgs/by-name/bl/blahtexml/package.nix @@ -4,7 +4,7 @@ stdenv, libiconv, libxslt, - texliveFull, + texliveBasic, xercesc, }: @@ -38,7 +38,10 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ libxslt - texliveFull # scheme-full needed for ucs package + (texliveBasic.withPackages (ps: [ + ps.cm-super + ps.ucs + ])) ]; buildInputs = [ xercesc ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];