diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-18 18:33:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:26 +0200 |
commit | 6e4aced69d594f0c99bc108569035ab687859202 (patch) | |
tree | 688cfe5008361460c3885009c90eb63da43aad8c /gnu | |
parent | 81fa2caf2d7866a4f6f3de76e6963491a68d0212 (diff) | |
download | guix-6e4aced69d594f0c99bc108569035ab687859202.tar.gz guix-6e4aced69d594f0c99bc108569035ab687859202.zip |
gnu: Add texlive-context-letter.
* gnu/packages/tex.scm (texlive-context-letter): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c273a9ad1b..6d5ff8202f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10359,6 +10359,29 @@ page and displays the sizes of the widths and heights of the margins, header, footer and text body.") (license license:gpl3+))) +(define-public texlive-context-letter + (package + (name "texlive-context-letter") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/context/third/letter/" + "tex/context/interface/third/" + "tex/context/third/letter/base/" + "tex/context/third/letter/style/") + (base32 + "1bygisva06mj7kqcwdyk9mp247dv8v0qxgh2g1a451q8sqnk52yl"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-context)) + (home-page "https://ctan.org/pkg/context-letter") + (synopsis "ConTeXt package for writing letters") + (description + "This package provides a means of writing vanilla letters and memos is +provided, with support covering ConTeXt Mkii and Mkiv. The design of +letters may be amended by a wide range of style specifications.") + (license license:gpl3+))) + (define-public texlive-beamer (package (name "texlive-beamer") |