summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-04 20:02:31 +0000
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-05 13:43:28 +0000
commit92501d7bedc0c9fd17e71d228118aad542f71d54 (patch)
treed0d2fb6675dd42b5e4700b699e866cc6467c353d /pkgs/tools/typesetting
parent9b4d056ec5133da7a14500ede0f6fb8f39ad727e (diff)
catdvi: replace texlive.combine with texliveInfraOnly.withPackages
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/catdvi/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/tex/catdvi/default.nix b/pkgs/tools/typesetting/tex/catdvi/default.nix
index ea2b49423f22f..924aa57ece996 100644
--- a/pkgs/tools/typesetting/tex/catdvi/default.nix
+++ b/pkgs/tools/typesetting/tex/catdvi/default.nix
@@ -3,14 +3,13 @@
 , fetchurl
 , fetchpatch
 , texlive
+, texliveInfraOnly
 , buildPackages
 }:
 
 let
   buildPlatformTools = [ "pse2unic" "adobe2h" ];
-  tex = texlive.combine {
-    inherit (texlive) collection-fontsrecommended;
-  };
+  tex = texliveInfraOnly.withPackages (ps: [ ps.collection-fontsrecommended ]);
 in
 
 stdenv.mkDerivation (finalAttrs: {