me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-dialogl.

* gnu/packages/tex.scm (texlive-dialogl): New variable.
master
Nicolas Goaziou 2023-08-29 15:48:09 +02:00
parent fdcdc91fed
commit 91488cd65d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 20 additions and 0 deletions

View File

@ -79053,6 +79053,26 @@ a TeX installation (i.e., what extensions it supports). An example document
that examines the installation is available.") that examines the installation is available.")
(license license:gpl3+))) (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 ;;; 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 ;;; of a merge conflict, place them above by existing packages with similar