Commit 35b698d0 authored by Vincenzo Mantova's avatar Vincenzo Mantova
Browse files

mftrace: move texlive dependencies to tlDeps

parent acb02e2f
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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";