From cea480adfa7f08d6543d147f4508142a31f482af Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:03:14 +0200 Subject: [PATCH] gnu: Add texlive-thinsp. * gnu/packages/tex.scm (texlive-thinsp): New variable. --- gnu/packages/tex.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 77197d7a5b..aa9e1d04ab 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98027,6 +98027,23 @@ (define-public texlive-theoremref decides to change a lemma to a proposition or a theorem (or whatever).") (license (list license:lppl license:gpl2)))) +(define-public texlive-thinsp + (package + (name "texlive-thinsp") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/thinsp/" "tex/latex/thinsp/") + (base32 + "1brnqvzj9z74dalymnk3yrmagqrlrbq8zq0whcxg3bi33gx4b76f"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/thinsp") + (synopsis "Stretchable @code{\\thinspace} for LaTeX") + (description + "The package redefines @code{\\thinspace} to have a stretch component.") + (license license:gpl3+))) + ;;; ;;; 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