diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:01:52 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:25 +0200 |
commit | 5ab8f15b423e70661b3cb9eb16274d2f15cead8d (patch) | |
tree | 8083aaa08f7ba10f9d0454ffc8394aab0de6bd2d /gnu | |
parent | 9147002364077824ce7a855cbd719b511e898999 (diff) | |
download | guix-5ab8f15b423e70661b3cb9eb16274d2f15cead8d.tar.gz |
gnu: Add texlive-stdpage.
* gnu/packages/tex.scm (texlive-stdpage): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b20b5f83fd..368159f3f5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96456,6 +96456,27 @@ provides a version of @code{\\CheckCommand} that sets a flag rather than printing a warning.") (license license:lppl))) +(define-public texlive-stdpage + (package + (name "texlive-stdpage") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/stdpage/" "source/latex/stdpage/" + "tex/latex/stdpage/") + (base32 + "064l0mj06wnacz7hcgf9c4nqc6f7l2fyg6gvq797vbdffgw721wd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/stdpage") + (synopsis "Standard pages with n lines of at most m characters each") + (description + "For translations, proofreading, journal contributions etc., standard pages +are used. Those standard pages consist of a fixed number of lines and +characters per line. This package produces pages with n lines of at most +m characters each.") + (license license:lppl1.2+))) + ;;; ;;; 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 |