me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-scheme-basic.

* gnu/packages/tex.scm (texlive-scheme-basic): New variable.
Nicolas Goaziou 2023-06-09 17:40:53 +02:00
parent 975ddd136d
commit 14e6091b84
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 18 additions and 0 deletions

View File

@ -11034,6 +11034,7 @@ The macros were designed for use within other macros.")
(propagated-inputs
(list texlive-amsfonts
texlive-bibtex
texlive-bin ;set GUIX TEXMF and engines
texlive-cm
texlive-colorprofiles
texlive-dvipdfmx
@ -13043,6 +13044,23 @@ break statement, except that the loop does not terminate until the end of the
current iteration.")
(license license:lppl)))
(define-public texlive-scheme-basic
(package
(name "texlive-scheme-basic")
(version (number->string %texlive-revision))
(source #f)
(build-system trivial-build-system)
(arguments (list #:builder #~(mkdir #$output)))
(propagated-inputs (list texlive-collection-basic texlive-collection-latex))
(home-page "https://www.tug.org/texlive/")
(synopsis "Basic scheme (plain and latex)")
(description
"This is the basic TeX Live scheme: it is a small set of files sufficient
to typeset plain TeX or LaTeX documents in PostScript or PDF, using the
Computer Modern fonts. This scheme corresponds to @code{collection-basic} and
@code{collection-latex}.")
(license (license:fsf-free "https://www.tug.org/texlive/copying.html"))))
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar