nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1# TeX Live {#sec-language-texlive}
2
3Since release 15.09 there is a new TeX Live packaging that lives entirely under attribute `texlive`.
4
5## User's guide (experimental new interface) {#sec-language-texlive-user-guide-experimental}
6
7Release 23.11 ships with a new interface that will eventually replace `texlive.combine`.
8
9- For basic usage, use some of the prebuilt environments available at the top level, such as `texliveBasic`, `texliveSmall`. For the full list of prebuilt environments, inspect `texlive.schemes`.
10
11- Packages cannot be used directly but must be assembled in an environment. To create or add packages to an environment, use
12 ```nix
13 texliveSmall.withPackages (ps: with ps; [ collection-langkorean algorithms cm-super ])
14 ```
15 The function `withPackages` can be called multiple times to add more packages.
16
17 - **Note.** Within Nixpkgs, packages should only use prebuilt environments as inputs, such as `texliveSmall` or `texliveInfraOnly`, and should not depend directly on `texlive`. Further dependencies should be added by calling `withPackages`. This is to ensure that there is a consistent and simple way to override the inputs.
18
19- `texlive.withPackages` uses the same logic as `buildEnv`. Only parts of a package are installed in an environment: its 'runtime' files (`tex` output), binaries (`out` output), and support files (`tlpkg` output). Moreover, man and info pages are assembled into separate `man` and `info` outputs. To add only the TeX files of a package, or its documentation (`texdoc` output), just specify the outputs:
20 ```nix
21 texlive.withPackages (ps: with ps; [
22 texdoc # recommended package to navigate the documentation
23 perlPackages.LaTeXML.tex # tex files of LaTeXML, omit binaries
24 cm-super
25 cm-super.texdoc # documentation of cm-super
26 ])
27 ```
28
29- All packages distributed by TeX Live, which contains most of CTAN, are available and can be found under `texlive.pkgs`:
30 ```ShellSession
31 $ nix repl
32 nix-repl> :l <nixpkgs>
33 nix-repl> texlive.pkgs.[TAB]
34 ```
35 Note that the packages in `texlive.pkgs` are only provided for search purposes and must not be used directly.
36
37- **Experimental and subject to change without notice:** to add the documentation for all packages in the environment, use
38 ```nix
39 texliveSmall.__overrideTeXConfig { withDocs = true; }
40 ```
41 This can be applied before or after calling `withPackages`.
42
43 The function currently support the parameters `withDocs`, `withSources`, and `requireTeXPackages`.
44
45## User's guide {#sec-language-texlive-user-guide}
46
47- For basic usage just pull `texlive.combined.scheme-basic` for an environment with basic LaTeX support.
48
49- It typically won't work to use separately installed packages together. Instead, you can build a custom set of packages like this. Most CTAN packages should be available:
50
51 ```nix
52 texlive.combine {
53 inherit (texlive) scheme-small collection-langkorean algorithms cm-super;
54 }
55 ```
56
57- There are all the schemes, collections and a few thousand packages, as defined upstream (perhaps with tiny differences).
58
59- By default you only get executables and files needed during runtime, and a little documentation for the core packages. To change that, you need to add `pkgFilter` function to `combine`.
60
61 ```nix
62 texlive.combine {
63 # inherit (texlive) whatever-you-want;
64 pkgFilter = pkg:
65 pkg.tlType == "run" || pkg.tlType == "bin" || pkg.hasManpages || pkg.pname == "cm-super";
66 # elem tlType [ "run" "bin" "doc" "source" ]
67 # there are also other attributes: version, name
68 }
69 ```
70
71- You can list packages e.g. by `nix repl`.
72
73 ```ShellSession
74 $ nix repl
75 nix-repl> :l <nixpkgs>
76 nix-repl> texlive.collection-[TAB]
77 ```
78
79- Note that the wrapper assumes that the result has a chance to be useful. For example, the core executables should be present, as well as some core data files. The supported way of ensuring this is by including some scheme, for example `scheme-basic`, into the combination.
80
81- TeX Live packages are also available under `texlive.pkgs` as derivations with outputs `out`, `tex`, `texdoc`, `texsource`, `tlpkg`, `man`, `info`. They cannot be installed outside of `texlive.combine` but are available for other uses. To repackage a font, for instance, use
82
83 ```nix
84 stdenvNoCC.mkDerivation rec {
85 src = texlive.pkgs.iwona;
86 dontUnpack = true;
87
88 inherit (src) pname version;
89
90 installPhase = ''
91 runHook preInstall
92 install -Dm644 $src/fonts/opentype/nowacki/iwona/*.otf -t $out/share/fonts/opentype
93 runHook postInstall
94 '';
95 }
96 ```
97
98 See `biber`, `iwona` for complete examples.
99
100## Custom packages {#sec-language-texlive-custom-packages}
101
102You may find that you need to use an external TeX package. A derivation for such package has to provide the contents of the "texmf" directory in its `"tex"` output, according to the [TeX Directory Structure](https://tug.ctan.org/tds/tds.html). Dependencies on other TeX packages can be listed in the attribute `tlDeps`.
103
104The functions `texlive.combine` and `texlive.withPackages` recognise the following outputs:
105
106- `"out"`: contents are linked in the TeX Live environment, and binaries in the `$out/bin` folder are wrapped;
107- `"tex"`: linked in `$TEXMFDIST`; files should follow the TDS (for instance `$tex/tex/latex/foiltex/foiltex.cls`);
108- `"texdoc"`, `"texsource"`: ignored by default, treated as `"tex"`;
109- `"tlpkg"`: linked in `$TEXMFROOT/tlpkg`;
110- `"man"`, `"info"`, ...: the other outputs are combined into separate outputs.
111
112When using `pkgFilter`, `texlive.combine` will assign `tlType` respectively `"bin"`, `"run"`, `"doc"`, `"source"`, `"tlpkg"` to the above outputs.
113
114Here is a (very verbose) example. See also the packages `auctex`, `eukleides`, `mftrace` for more examples.
115
116```nix
117with import <nixpkgs> {};
118
119let
120 foiltex = stdenvNoCC.mkDerivation {
121 pname = "latex-foiltex";
122 version = "2.1.4b";
123
124 outputs = [ "tex" "texdoc" ];
125 passthru.tlDeps = with texlive; [ latex ];
126
127 srcs = [
128 (fetchurl {
129 url = "http://mirrors.ctan.org/macros/latex/contrib/foiltex/foiltex.dtx";
130 hash = "sha256-/2I2xHXpZi0S988uFsGuPV6hhMw8e0U5m/P8myf42R0=";
131 })
132 (fetchurl {
133 url = "http://mirrors.ctan.org/macros/latex/contrib/foiltex/foiltex.ins";
134 hash = "sha256-KTm3pkd+Cpu0nSE2WfsNEa56PeXBaNfx/sOO2Vv0kyc=";
135 })
136 ];
137
138 unpackPhase = ''
139 runHook preUnpack
140
141 for _src in $srcs; do
142 cp "$_src" $(stripHash "$_src")
143 done
144
145 runHook postUnpack
146 '';
147
148 nativeBuildInputs = [
149 (texliveSmall.withPackages (ps: with ps; [ cm-super hypdoc latexmk ]))
150 # multiple-outputs.sh fails if $out is not defined
151 (writeShellScript "force-tex-output.sh" ''
152 out="''${tex-}"
153 '')
154 ];
155
156 dontConfigure = true;
157
158 buildPhase = ''
159 runHook preBuild
160
161 # Generate the style files
162 latex foiltex.ins
163
164 # Generate the documentation
165 export HOME=.
166 latexmk -pdf foiltex.dtx
167
168 runHook postBuild
169 '';
170
171 installPhase = ''
172 runHook preInstall
173
174 path="$tex/tex/latex/foiltex"
175 mkdir -p "$path"
176 cp *.{cls,def,clo,sty} "$path/"
177
178 path="$texdoc/doc/tex/latex/foiltex"
179 mkdir -p "$path"
180 cp *.pdf "$path/"
181
182 runHook postInstall
183 '';
184
185 meta = {
186 description = "LaTeX2e class for overhead transparencies";
187 license = lib.licenses.unfreeRedistributable;
188 maintainers = with lib.maintainers; [ veprbl ];
189 platforms = lib.platforms.all;
190 };
191 };
192
193 latex_with_foiltex = texliveSmall.withPackages (_: [ foiltex ]);
194in
195 runCommand "test.pdf" {
196 nativeBuildInputs = [ latex_with_foiltex ];
197 } ''
198cat >test.tex <<EOF
199\documentclass{foils}
200
201\title{Presentation title}
202\date{}
203
204\begin{document}
205\maketitle
206\end{document}
207EOF
208 pdflatex test.tex
209 cp test.pdf $out
210''
211```
212
213## LuaLaTeX font cache {#sec-language-texlive-lualatex-font-cache}
214
215The font cache for LuaLaTeX is written to `$HOME`.
216Therefore, it is necessary to set `$HOME` to a writable path, e.g. [before using LuaLaTeX in nix derivations](https://github.com/NixOS/nixpkgs/issues/180639):
217```nix
218runCommandNoCC "lualatex-hello-world" {
219 buildInputs = [ texliveFull ];
220} ''
221 mkdir $out
222 echo '\documentclass{article} \begin{document} Hello world \end{document}' > main.tex
223 env HOME=$(mktemp -d) lualatex -interaction=nonstopmode -output-format=pdf -output-directory=$out ./main.tex
224''
225```
226
227Additionally, [the cache of a user can diverge from the nix store](https://github.com/NixOS/nixpkgs/issues/278718).
228To resolve font issues that might follow, the cache can be removed by the user:
229```ShellSession
230luaotfload-tool --cache=erase --flush-lookups --force
231```