mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: texlive-bin: Add native search paths.
* gnu/packages/tex.scm (texlive-bin)[native-search-paths]: Add specifications for TEXMF and TEXMFCNF.
This commit is contained in:
parent
476f7fceb7
commit
a1b4d62cda
1 changed files with 9 additions and 0 deletions
|
@ -230,6 +230,15 @@ (define-public texlive-bin
|
||||||
(setenv "PATH" (string-append (getenv "PATH") ":" out "/bin"))
|
(setenv "PATH" (string-append (getenv "PATH") ":" out "/bin"))
|
||||||
(with-directory-excursion out
|
(with-directory-excursion out
|
||||||
(patch-source-shebangs))))))))
|
(patch-source-shebangs))))))))
|
||||||
|
(native-search-paths
|
||||||
|
(list (search-path-specification
|
||||||
|
(variable "TEXMF")
|
||||||
|
(files '("share/texmf-dist"))
|
||||||
|
(separator #f))
|
||||||
|
(search-path-specification
|
||||||
|
(variable "TEXMFCNF")
|
||||||
|
(files '("share/texmf-dist/web2c"))
|
||||||
|
(separator #f))))
|
||||||
(synopsis "TeX Live, a package of the TeX typesetting system")
|
(synopsis "TeX Live, a package of the TeX typesetting system")
|
||||||
(description
|
(description
|
||||||
"TeX Live provides a comprehensive TeX document production system.
|
"TeX Live provides a comprehensive TeX document production system.
|
||||||
|
|
Loading…
Reference in a new issue