From 20002a2b73380f7e654b76f397affb34894b1f6a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:35 +0200 Subject: [PATCH] gnu: Add texlive-plweb. * gnu/packages/tex.scm (texlive-plweb): 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 1207a06887..8e54d7515f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92524,6 +92524,26 @@ environment that takes the place of the @code{figure} environment for such colour images.") (license license:lppl))) +(define-public texlive-plweb + (package + (name "texlive-plweb") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/plweb/" "source/latex/plweb/" + "tex/latex/plweb/") + (base32 + "1gnr1ykjmj014w4di19c02ir3y6x6fqzdz6g7km3bki1kjq0gj6p"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pl") + (synopsis "Literate programming for Prolog with LaTeX") + (description + "Instead of having to transform the common source into program or documentation, +the central idea was to develop a method to have one common source which can +be interpreted by a Prolog system as well as by LaTeX.") + (license (license:fsf-free "file://doc/latex/plweb/README")))) + ;;; ;;; 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