Commit acb02e2f authored by Vincenzo Mantova's avatar Vincenzo Mantova
Browse files

eukleides: move texlive dependencies to tlDeps

parent 57b2634a
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -49,10 +49,12 @@ stdenv.mkDerivation (finalAttrs: rec {

  outputs = [ "out" "doc" "tex" ];

  passthru.tlType = "run";
  passthru.pkgs = [ finalAttrs.finalPackage.tex ]
  passthru = {
    tlType = "run";
    # packages needed by euktoeps, euktopdf and eukleides.sty
    ++ (with texlive; collection-pstricks.pkgs ++ epstopdf.pkgs ++ iftex.pkgs ++ moreverb.pkgs);
    tlDeps = with texlive; [ collection-pstricks epstopdf iftex moreverb ];
    pkgs = [ finalAttrs.finalPackage.tex ];
  };

  meta = {
    description = "Geometry Drawing Language";