diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:27:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:19 +0200 |
commit | 084a068002cbfc6674b0dde4258c247a8e3e8cfc (patch) | |
tree | 36841d8286d6cb70df896b6b3b89a88c63dbe52d /gnu/packages | |
parent | 12123289d4a3643736142755302d27caeccb58f6 (diff) |
gnu: Add texlive-tex-vpat.
* gnu/packages/tex.scm (texlive-tex-vpat): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4214309533..bb0e6ee6df 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -25509,6 +25509,24 @@ LaTeX (and its friends like ConTeXt, MetaPost, Metafont, etc.) using DocBook/XML source format.") (license license:fdl1.2+))) +(define-public texlive-tex-vpat + (package + (name "texlive-tex-vpat") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tex-vpat/") + (base32 + "16nfvhzzg46vk6pqli6spxq9y9r0manqd5b7b4k6r9lssdqxf8ld"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tex-vpat") + (synopsis "TeX accessibility conformance report") + (description + "This package provides the TeX accessibility conformance report based on +ITI VPAT(R) guidelines.") + (license license:cc-by3.0))) + (define-public texlive-threeparttable (package (name "texlive-threeparttable") |