From 1aa40cd567a9aa3f9ccc1c5f65db851a6ab1d621 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:52:25 +0200 Subject: [PATCH] gnu: Add texlive-highlightlatex. * gnu/packages/tex.scm (texlive-highlightlatex): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4d7c79c9b1..a71e954fee 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -84888,6 +84888,25 @@ (define-public texlive-hideanswer to be printed on paper.") (license license:expat))) +(define-public texlive-highlightlatex + (package + (name "texlive-highlightlatex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/highlightlatex/" + "tex/latex/highlightlatex/") + (base32 + "078gfncpx7nxwz2xxhdb1a294bwmf3rh9rcqp664c5aj2q7ynvz0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/highlightlatex") + (synopsis "Syntax highlighting for LaTeX") + (description + "This package provides extensive colored syntax highlighting for LaTeX. +For this purpose it builds on the generic @code{listings} package.") + (license license:expat))) + ;;; ;;; 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