From f8277f8b2193169a442db1b88ae40ce3bedf9bdd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:37 +0200 Subject: [PATCH] gnu: Add texlive-minibox. * gnu/packages/tex.scm (texlive-minibox): 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 5803ad52f9..463fb198fe 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88886,6 +88886,28 @@ and can be well distinguished from the main text, for writing your ideas or annotations.") (license license:lppl1.3c))) +(define-public texlive-minibox + (package + (name "texlive-minibox") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/minibox/" "source/latex/minibox/" + "tex/latex/minibox/") + (base32 + "0z53r59771rdkbqxyjxn37r2ra67kw0ir0fnggmza90h3vidq5yg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (native-inputs (list texlive-filecontents)) + (home-page "https://ctan.org/pkg/minibox") + (synopsis "Simple type of box for LaTeX") + (description + "This small package provides a convenient input syntax for boxes that don't +break their text over lines automatically, but do allow manual line breaks. +The boxes shrink to the natural width of the longest line they contain.") + (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