From 7cb08878c83607fabedab04a3ee8c281da904fcb Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:46:41 +0200 Subject: [PATCH] gnu: Add texlive-conv-xkv. * gnu/packages/tex.scm (texlive-conv-xkv): 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 1e6d05d1c8..1bd9c50905 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -77040,6 +77040,29 @@ (define-public texlive-contracard for the same.") (license license:lppl1.3c))) +(define-public texlive-conv-xkv + (package + (name "texlive-conv-xkv") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/conv-xkv/" + "source/latex/conv-xkv/" + "tex/latex/conv-xkv/") + (base32 + "0fwcq7y67dn2j2002kqibphpx30q7d5jay62gi5pwk39d6vrmp5w"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/conv-xkv") + (synopsis "Create new key-value syntax") + (description + "This small package supports key-value syntax other than the standard LaTeX +syntax of @samp{=}. Using this package, create key-values of the +form @samp{:} or @samp{->}, for example. The package +converts the new notation to @code{xkeyval} notation and passes it on to +@code{xkeyval}.") + (license license:lppl1.2+))) + ;;; ;;; 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