From 6d8e50857630bfd88b93a2a05ed681e774ee1594 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:19 +0200 Subject: [PATCH] gnu: Add texlive-mversion. * gnu/packages/tex.scm (texlive-mversion): 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 a15081f820..dca8f7e1c4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -89761,6 +89761,29 @@ or Polyglossia.") automatically.") (license license:lppl1.3c))) +(define-public texlive-mversion + (package + (name "texlive-mversion") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mversion/" + "source/latex/mversion/" + "tex/latex/mversion/") + (base32 + "04s7lhqs3hznjai9by61p4i2kycxypc8rs02zay14cl1glhwh21a"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mversion") + (synopsis "Keeping track of document versions") + (description + "The package enables the user to keep track of different versions of a LaTeX +document. The command @code{\\version} prints the version and build numbers; +each time you compile your document, the build number is increased by one. By +placing @code{\\version} in the header or footer, each page can be marked with +the unique build number describing the progress of your document.") + (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