From affaedd5ea30481f82e2c2d3a349d4b84deca675 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:01:58 +0200 Subject: [PATCH] gnu: Add texlive-sttools. * gnu/packages/tex.scm (texlive-sttools): 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 52e56dbb07..b1e87e099f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96571,6 +96571,28 @@ (define-public texlive-stringstrings manipulations.") (license license:lppl1.3+))) +(define-public texlive-sttools + (package + (name "texlive-sttools") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sttools/" "source/latex/sttools/" + "tex/latex/sttools/") + (base32 + "0dvx30fzzkf632c3qnz7bg2ljlnawz7440qga8shcdb70i951lgm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sttools") + (synopsis "Various macros") + (description + "This package provides a collection of tools and macros, providing: +miscellaneous float control, page styles for floats, multipage tabulars, even +columns at end of twocolumn region, switching between one- and two-column +anywhere, simulating the effect of ``midfloats'', a package to manipulate +numerical lists and arrays.") + (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