[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/35: gnu: Add texlive-tex-plain.
From: |
Ricardo Wurmus |
Subject: |
12/35: gnu: Add texlive-tex-plain. |
Date: |
Thu, 15 Jun 2017 11:04:07 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 566e95f7a84cdff440349be074d42a6b250785ca
Author: Ricardo Wurmus <address@hidden>
Date: Fri Jun 9 09:26:00 2017 +0200
gnu: Add texlive-tex-plain.
* gnu/packages/tex.scm (texlive-tex-plain): New variable.
---
gnu/packages/tex.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 8b6bfe6..294225c 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -637,6 +637,41 @@ class), line and circle fonts (for use in the picture
environment) and LaTeX
symbol fonts.")
(license license:lppl1.2+)))
+;; This provides etex.src which is needed to build various formats, including
+;; luatex.fmt and pdflatex.fmt
+(define-public texlive-tex-plain
+ (package
+ (name "texlive-tex-plain")
+ (version (number->string %texlive-revision))
+ (source (origin
+ (method svn-fetch)
+ (uri (svn-reference
+ (url (string-append "svn://www.tug.org/texlive/tags/"
+ %texlive-tag "/Master/texmf-dist/"
+ "/tex/plain"))
+ (revision %texlive-revision)))
+ (sha256
+ (base32
+ "1ifmbyl3ir8k0v1g25xjb5rcyy5vhj8a3fa2088nczga09hna5vn"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((target (string-append (assoc-ref %outputs "out")
+ "/share/texmf-dist/tex/plain")))
+ (mkdir-p target)
+ (copy-recursively (assoc-ref %build-inputs "source") target)
+ #t))))
+ (home-page "https://www.ctan.org/pkg/plain")
+ (synopsis "Plain TeX format and supporting files")
+ (description
+ "Contains files used to build the Plain TeX format, as described in the
+TeXbook, together with various supporting files (some also discussed in the
+book).")
+ (license license:knuth)))
+
(define texlive-texmf
(package
(name "texlive-texmf")
- branch master updated (32fdad7 -> afbc941), Ricardo Wurmus, 2017/06/15
- 01/35: guix: Add download-svn-to-store., Ricardo Wurmus, 2017/06/15
- 03/35: gnu: Add texlive-dvips., Ricardo Wurmus, 2017/06/15
- 09/35: gnu: Add texlive-fonts-cm., Ricardo Wurmus, 2017/06/15
- 12/35: gnu: Add texlive-tex-plain.,
Ricardo Wurmus <=
- 16/35: gnu: Add texlive-generic-ifxetex., Ricardo Wurmus, 2017/06/15
- 19/35: gnu: Add texlive-latex-xcolor., Ricardo Wurmus, 2017/06/15
- 02/35: licenses: Add common TeX and LaTeX licenses., Ricardo Wurmus, 2017/06/15
- 10/35: gnu: Add texlive-fonts-knuth-lib., Ricardo Wurmus, 2017/06/15
- 11/35: gnu: Add texlive-fonts-latex., Ricardo Wurmus, 2017/06/15
- 15/35: gnu: Add texlive-latex-filecontents., Ricardo Wurmus, 2017/06/15
- 24/35: gnu: Add texlive-latex-l3kernel., Ricardo Wurmus, 2017/06/15
- 07/35: gnu: Add texlive-generic-hyph-utf8., Ricardo Wurmus, 2017/06/15
- 32/35: gnu: Add texlive-latex-psnfss., Ricardo Wurmus, 2017/06/15
- 21/35: gnu: Add texlive-latex-oberdiek., Ricardo Wurmus, 2017/06/15