From 41f4b45604a8506e8c518061612cbfcb1210d231 Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 4 Nov 2023 20:02:31 +0000 Subject: pari: replace texlive.combine with texliveBasic.withPackages --- pkgs/tools/typesetting/tex/auctex/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/typesetting') diff --git a/pkgs/tools/typesetting/tex/auctex/default.nix b/pkgs/tools/typesetting/tex/auctex/default.nix index e928608f9e2..b0fcc3b4d47 100644 --- a/pkgs/tools/typesetting/tex/auctex/default.nix +++ b/pkgs/tools/typesetting/tex/auctex/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, emacs, texlive, ghostscript }: +{ lib, stdenv, fetchurl, emacs, texliveBasic, ghostscript }: let auctex = stdenv.mkDerivation ( rec { # Make this a valid tex(live-new) package; @@ -17,7 +17,7 @@ let auctex = stdenv.mkDerivation ( rec { buildInputs = [ emacs ghostscript - (texlive.combine { inherit (texlive) scheme-basic hypdoc; }) + (texliveBasic.withPackages (ps: [ ps.hypdoc ])) ]; preConfigure = '' -- cgit 1.4.1