From 35b698d0b2194038d0a2f279347053e5a10ea1fb Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 11 Mar 2023 20:57:24 +0000 Subject: [PATCH] mftrace: move texlive dependencies to tlDeps --- pkgs/tools/typesetting/tex/mftrace/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/typesetting/tex/mftrace/default.nix b/pkgs/tools/typesetting/tex/mftrace/default.nix index 14e3c2fe7ebe..9f061630e224 100644 --- a/pkgs/tools/typesetting/tex/mftrace/default.nix +++ b/pkgs/tools/typesetting/tex/mftrace/default.nix @@ -44,9 +44,11 @@ stdenv.mkDerivation (finalAttrs: rec { # experimental texlive.combine support # (note that only the bin/ folder will be combined into texlive) - passthru.tlType = "bin"; - passthru.pkgs = [ finalAttrs.finalPackage ] ++ - (with texlive; kpathsea.pkgs ++ t1utils.pkgs ++ metafont.pkgs); + passthru = { + tlType = "bin"; + tlDeps = with texlive; [ kpathsea t1utils metafont ]; + pkgs = [ finalAttrs.finalPackage ]; + }; meta = with lib; { description = "Scalable PostScript Fonts for MetaFont";