[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
423/458: gnu: Add texlive-latex.
From: |
guix-commits |
Subject: |
423/458: gnu: Add texlive-latex. |
Date: |
Wed, 14 Jun 2023 05:23:26 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit f5cae8c07240a75735192b43dfb16c855fbb5aec
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Jun 4 00:29:00 2023 +0200
gnu: Add texlive-latex.
* gnu/packages/tex.scm (texlive-latex): New variable.
---
gnu/packages/tex.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index a3c41e9c94..77a1c2f578 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -740,6 +740,44 @@ Knuth's TeX book; this source is there to read, as an
example of writing TeX ;
it should not be processed without Knuth's direct permission.")
(license license:knuth)))
+(define-public texlive-latex
+ (package
+ (name "texlive-latex")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/base/" "makeindex/latex/"
+ "source/latex/base/" "tex/latex/base/")
+ (base32
+ "0k2b6qi281cl4zml6l537iyps1zwaq7pip81qq8vlkhb9h5ggpnw")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (arguments
+ (list
+ #:texlive-latex-base #f
+ #:tex-engine "tex"
+ #:tex-format #f
+ #:build-targets #~(list "unpack.ins")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-lua-build
+ ;; The literal tab in the dtx file is translated to the string
+ ;; "^^I" in the generated Lua file, which causes a syntax error.
+ (lambda _
+ (substitute* "source/latex/base/ltluatex.dtx"
+ (("\t") " ")))))))
+ (propagated-inputs
+ (list texlive-latex-fonts
+ texlive-latexconfig
+ texlive-luatex
+ texlive-pdftex))
+ (home-page "https://ctan.org/pkg/latex")
+ (synopsis "TeX macro package that defines LaTeX")
+ (description
+ "LaTeX is a widely-used macro package for TeX, providing many basic
+document formating commands extended by a wide range of packages.")
+ (license license:lppl1.3c)))
+
(define-public texlive-bidi
(package
(name "texlive-bidi")
- 386/458: gnu: texlive-totcount: Remove SIMPLE-TEXLIVE-PACKAGE call., (continued)
- 386/458: gnu: texlive-totcount: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/06/14
- 397/458: gnu: texlive-amsfonts: Fix build., guix-commits, 2023/06/14
- 393/458: gnu: texlive-knuth-lib: Fix build., guix-commits, 2023/06/14
- 356/458: gnu: texlive-siunitx: Refresh package definition., guix-commits, 2023/06/14
- 410/458: gnu: texlive-xindy: Use TEXLIVE-BUILD-SYSTEM and related tools., guix-commits, 2023/06/14
- 406/458: gnu: texlive-xypic: Fix build., guix-commits, 2023/06/14
- 394/458: gnu: texlive-mflogo-font: Fix build., guix-commits, 2023/06/14
- 404/458: gnu: texlive-cs: Fix build., guix-commits, 2023/06/14
- 415/458: gnu: Add texlive-mfware., guix-commits, 2023/06/14
- 418/458: gnu: texlive: Improve package style., guix-commits, 2023/06/14
- 423/458: gnu: Add texlive-latex.,
guix-commits <=
- 428/458: gnu: texlive-xmltex: Rely on build system to create formats., guix-commits, 2023/06/14
- 430/458: gnu: texlive-csplain: Create formats., guix-commits, 2023/06/14
- 431/458: gnu: texlive-jadetex: Rely on build system to create formats., guix-commits, 2023/06/14
- 457/458: gnu: Replace texlive-latex-base with texlive-latex-bin., guix-commits, 2023/06/14
- 458/458: guix: texlive importer: Set #:texlive-latex-bin? when appropriate., guix-commits, 2023/06/14
- 446/458: gnu: Add texlive-ltxmisc., guix-commits, 2023/06/14
- 350/458: gnu: texlive-dvips: Refresh package definition., guix-commits, 2023/06/14
- 389/458: guix: texlive-build-system: Generate font metrics., guix-commits, 2023/06/14
- 349/458: gnu: texlive-underscore: Refresh package definition., guix-commits, 2023/06/14
- 371/458: gnu: texlive-grfext: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/06/14