diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-09 08:58:05 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:12:58 +0200 |
commit | 752779d98ad050810fe8b6e8ead9d16b1c6b308d (patch) | |
tree | 3a7e8ab175e88d862edbf23842b3b5f4b20bedbc /gnu/packages | |
parent | 07e76f9e06479f60b4f29758395c76e4ddc4e6a5 (diff) | |
download | guix-752779d98ad050810fe8b6e8ead9d16b1c6b308d.tar.gz guix-752779d98ad050810fe8b6e8ead9d16b1c6b308d.zip |
gnu: Add texlive-latex-bin.
* gnu/packages/tex.scm (texlive-latex-bin): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6a9cdc68eb..133a394b98 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2267,6 +2267,57 @@ the required packages, constitutes what every LaTeX distribution should contain.") (license license:lppl1.3c+))) +(define-public texlive-latex-bin + (package + (name "texlive-latex-bin") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/dvilualatex.1" + "doc/man/man1/dvilualatex.man1.pdf" + "doc/man/man1/latex.1" + "doc/man/man1/latex.man1.pdf" + "doc/man/man1/lualatex.1" + "doc/man/man1/lualatex.man1.pdf" + "doc/man/man1/pdflatex.1" + "doc/man/man1/pdflatex.man1.pdf") + (base32 + "1mkiqwq28lbw9iaisfza1xg9wss4zazx9i2szprqgjfkw5c0yipi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments + (list + #:texlive-latex-base #f + #:create-formats #~(list "dvilualatex" "latex" "lualatex" "pdflatex"))) + (propagated-inputs + (list texlive-atbegshi + texlive-atveryend + texlive-babel + texlive-cm + texlive-everyshi + texlive-firstaid + texlive-graphics + texlive-hyphen-complete + texlive-l3backend + texlive-l3kernel + texlive-l3packages + texlive-latex + texlive-latex-fonts + texlive-latexconfig + texlive-lm + texlive-luahbtex + texlive-luaotfload + texlive-luatex + texlive-pdftex + texlive-tex-ini-files + texlive-unicode-data)) + (home-page "https://ctan.org/pkg/latex-bin") + (synopsis "LaTeX formats and man pages") + (description + "This package provides LaTeX format files and man pages along with +several packages that are considered as part of the LaTeX kernel.") + (license license:lppl1.3c+))) + (define-public texlive-atenddvi (package (name "texlive-atenddvi") |