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 11:56:05 +0000
commit41f4b45604a8506e8c518061612cbfcb1210d231 (patch)
treea6aaeca4d376eeeec6874dd24d332f0dcea14126 /pkgs/tools/typesetting
parent8ada8e2b257048e115dd8516188caff7042bbdd4 (diff)
downloadnixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.tar
nixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.tar.gz
nixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.tar.bz2
nixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.tar.lz
nixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.tar.xz
nixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.tar.zst
nixpkgs-41f4b45604a8506e8c518061612cbfcb1210d231.zip
pari: replace texlive.combine with texliveBasic.withPackages
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/auctex/default.nix4
1 files changed, 2 insertions, 2 deletions
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 = ''