From 70b837524971ca3a9ef67be36e7658ee93d0b1f9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:57 +0200 Subject: [PATCH] gnu: Add texlive-makebox. * gnu/packages/tex.scm (texlive-makebox): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bf8aaae181..f182802f0f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88051,6 +88051,26 @@ storage media.") (default 16). It does not change font or typeface.") (license license:lppl1.3+))) +(define-public texlive-makebox + (package + (name "texlive-makebox") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/makebox/" "source/latex/makebox/" + "tex/latex/makebox/") + (base32 + "0n7gxbqlx88bigcrw2z8jqwaakhisdzxx2lzn0ddjnpvslhm4hl9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/makebox") + (synopsis "Defines a @code{\\makebox*} command") + (description + "This package defines a @code{\\makebox*} command that does the same as +a @code{\\makebox} command, except that the width is given by a sample text +instead of an explicit length measure.") + (license license:lppl))) + ;;; ;;; 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