From f8e2f9361bffaf6b06a08cc76f5d1447cb969fcf Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:25 +0200 Subject: [PATCH] gnu: Add texlive-locality. * gnu/packages/tex.scm (texlive-locality): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4122c7ca64..a1235aced5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87401,6 +87401,28 @@ that are used in constructing LK proof diagrams.") structures, such as making a series of similar commands from a list of names.") (license license:lppl1.2+))) +(define-public texlive-locality + (package + (name "texlive-locality") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/locality/" + "source/latex/locality/" + "tex/latex/locality/") + (base32 + "0q26jb8x9ik3wfv224yxdfj651pxq49qvbz45f0x0iw6vxqllx1n"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/locality") + (synopsis "Various macros for keeping things local") + (description + "This package provides a toolbox of macros designed to allow the LaTeX +programmer to work around some of the restrictions of the TeX grouping +mechanisms. The present release offers a preliminary view of the package; not +all of its facilities are working optimally") + (license license:lppl1.3+))) + ;;; ;;; 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