From 91488cd65d0bac86f18089136e6be4344571fb12 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:09 +0200 Subject: [PATCH] gnu: Add texlive-dialogl. * gnu/packages/tex.scm (texlive-dialogl): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index afa5b189d0..37da19ee48 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79053,6 +79053,26 @@ a TeX installation (i.e., what extensions it supports). An example document that examines the installation is available.") (license license:gpl3+))) +(define-public texlive-dialogl + (package + (name "texlive-dialogl") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/dialogl/" "source/latex/dialogl/" + "tex/latex/dialogl/") + (base32 + "0vhv7jkc1ll9f4rzg8db83ksbispy7lqvjfywplpx7k1va1qp816"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/dialogl") + (synopsis "Macros for constructing interactive LaTeX scripts") + (description + "This package gathers together a bunch of code and examples about how +to write macros to carry on a dialogue with the user.") + (license license:lppl))) + ;;; ;;; 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