texlive: "Texlive" -> "TeX Live"

(cherry picked from commit c12d53dd7c)
This commit is contained in:
Dusk Banks
2021-05-29 22:42:56 -07:00
committed by Robert Helgesson
parent b8edffb918
commit 0ff5951285

View File

@@ -13,7 +13,7 @@ in {
options = {
programs.texlive = {
enable = mkEnableOption "Texlive";
enable = mkEnableOption "TeX Live";
extraPackages = mkOption {
default = tpkgs: { inherit (tpkgs) collection-basic; };
@@ -21,12 +21,12 @@ in {
example = literalExample ''
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
'';
description = "Extra packages available to Texlive.";
description = "Extra packages available to TeX Live.";
};
package = mkOption {
type = types.package;
description = "Resulting customized Texlive package.";
description = "Resulting customized TeX Live package.";
readOnly = true;
};
};