From d6d4ccdd833c57eb7604efd353056c89f137212a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:21 +0200 Subject: [PATCH] gnu: Add texlive-docutils. * gnu/packages/tex.scm (texlive-docutils): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3f3736b6a4..f566557f24 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79335,6 +79335,27 @@ (define-public texlive-documentation that the result is acceptable for inclusion in reports, etc.") (license license:lppl1.2+))) +(define-public texlive-docutils + (package + (name "texlive-docutils") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/docutils/" "tex/latex/docutils/") + (base32 + "01rh5w1dicjszp51vkk5zcs5lzrdmgddfm6dy3nv666gxq12jrf7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/docutils") + (synopsis + "Helper commands and element definitions for Docutils LaTeX output") + (description + "The package is intended for use with LaTeX documents generated from +reStructuredText sources with Docutils. When generating LaTeX documents, +specify this package with the stylesheet configuration option, e.g., +@samp{rst2latex --stylesheet=docutils exampledocument.txt}.") + (license license:bsd-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