From b5bfb452b012b26f868e2fcbac09634faf534a18 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:04:20 +0200 Subject: [PATCH] gnu: Add texlive-vdmlisting. * gnu/packages/tex.scm (texlive-vdmlisting): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 925452da8a..4fac335ed6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -99256,6 +99256,29 @@ (define-public texlive-vcell Different vertical alignments can be used in the same row.") (license license:lppl1.3c))) +(define-public texlive-vdmlisting + (package + (name "texlive-vdmlisting") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/vdmlisting/" + "tex/latex/vdmlisting/") + (base32 + "0yhgql2gflygjhx5mz87qqyiny7j0wpiqs2yvpmzm57linna3vzn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/vdmlisting") + (synopsis "Typesetting VDM in ASCII syntax") + (description + "The package is an extension for the @code{listings} package that provides +a source code printer for LaTeX. This package defines new language +definitions and listing environments for the three language dialects of the +Vienna Development Method: VDM-SL, VDM-PP and VDM-RT. If one wants to typeset +VDM with a mathematical syntax instead of the ASCII syntax used here, one +should use the @code{vdm} pacakge instead.") + (license license:lppl1.3+))) + ;;; ;;; 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