From 33d847e6ec568c8f3e2a8c3d95640b1556cce1dc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:15 +0200 Subject: [PATCH] gnu: Add texlive-svninfo. * gnu/packages/tex.scm (texlive-svninfo): 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 a4ddf33d18..abba1ee0d3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96899,6 +96899,25 @@ (define-public texlive-svn-multi retrieve information necessary for the required output.") (license license:lppl))) +(define-public texlive-svninfo + (package + (name "texlive-svninfo") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/svninfo/" "source/latex/svninfo/" + "tex/latex/svninfo/") + (base32 + "0y0lxpp1lqznvsxvckhcnvw3l712l9prfb9gi56csypngaqph5rb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/svninfo") + (synopsis "Typeset Subversion keywords") + (description + "This is a package for incorporating the values of Subversion keywords into +typeset documents.") + (license license:lppl1.0+))) + ;;; ;;; 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