summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-01 18:01:01 +0000
committerGitHub <noreply@github.com>2023-11-01 18:01:01 +0000
commitcd7af6170bf16a4935e2729594ebfc7f03760ec8 (patch)
tree0fab6b4d9518da1d8238f2365bfae676a94a7a4e /doc
parentd07f6b7c345d3565a83dc2fb683c9aa9fa2c3b4f (diff)
parent6b6bb56d412fec32860dbd35310a622f84119f5f (diff)
downloadnixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.tar
nixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.tar.gz
nixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.tar.bz2
nixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.tar.lz
nixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.tar.xz
nixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.tar.zst
nixpkgs-cd7af6170bf16a4935e2729594ebfc7f03760ec8.zip
Merge master into staging-next
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/texlive.section.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/languages-frameworks/texlive.section.md b/doc/languages-frameworks/texlive.section.md
index a4c81daa54b..777e94c16f1 100644
--- a/doc/languages-frameworks/texlive.section.md
+++ b/doc/languages-frameworks/texlive.section.md
@@ -38,6 +38,24 @@ Since release 15.09 there is a new TeX Live packaging that lives entirely under
 
 - 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.
 
+- 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
+
+  ```nix
+  stdenvNoCC.mkDerivation rec {
+    src = texlive.pkgs.iwona;
+
+    inherit (src) pname version;
+
+    installPhase = ''
+      runHook preInstall
+      install -Dm644 fonts/opentype/nowacki/iwona/*.otf -t $out/share/fonts/opentype
+      runHook postInstall
+    '';
+  }
+  ```
+
+  See `biber`, `iwona` for complete examples.
+
 ## Custom packages {#sec-language-texlive-custom-packages}
 
 You 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 output and provide the appropriate `tlType` attribute (one of `"run"`, `"bin"`, `"doc"`, `"source"`). Dependencies on other TeX packages can be listed in the attribute `tlDeps`.