me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-startex.

* gnu/packages/tex.scm (texlive-startex): New variable.
Nicolas Goaziou 2023-08-14 13:56:52 +02:00
parent 38ccc2eba5
commit a93efe10cf
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 21 additions and 0 deletions

View File

@ -8471,6 +8471,27 @@ engineering, those small structures are a key part for teaching. This package
permits to create such 2D and 3D structures in a very fast and simple way.")
(license (list license:gpl3+ license:lppl1.3+))))
(define-public texlive-startex
(package
(name "texlive-startex")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/otherformats/startex/"
"makeindex/startex/"
"source/startex/startex/" "tex/startex/")
(base32
"06hyz1bwzvabavkl6j9588skjwx8hc5dmiv8z9n7gr1w9aa9zm7x")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/startex")
(synopsis "XML-inspired format for student use")
(description
"This package provides a TeX format designed to help students write short
reports and essays. It provides the user with a suitable set of commands for
such a task. It is also more robust than plain TeX and LaTeX.")
(license license:public-domain)))
(define-public texlive-statex
(package
(name "texlive-statex")