From 7751dd9cbef559c85e4e684c7999a19cf81631a0 Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 23 May 2026 13:17:20 +0100 Subject: [PATCH] eukleides: make tlDeps a function --- pkgs/by-name/eu/eukleides/package.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/eu/eukleides/package.nix b/pkgs/by-name/eu/eukleides/package.nix index f8ef0b20da27..91b9f6f4c7f5 100644 --- a/pkgs/by-name/eu/eukleides/package.nix +++ b/pkgs/by-name/eu/eukleides/package.nix @@ -9,7 +9,6 @@ getopt, readline, texinfo, - texlive, versionCheckHook, }: @@ -92,11 +91,11 @@ stdenv.mkDerivation (finalAttrs: { ]; # packages needed by euktoeps, euktopdf and eukleides.sty - passthru.tlDeps = with texlive; [ - collection-pstricks - epstopdf - iftex - moreverb + passthru.tlDeps = ps: [ + ps.collection-pstricks + ps.epstopdf + ps.iftex + ps.moreverb ]; doInstallCheck = true;