From 4815850e736ab96e20d6671f5bf8cb5ab0fbc28b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:55 +0200 Subject: [PATCH] gnu: Add texlive-frame. * gnu/packages/tex.scm (texlive-frame): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9b7e512041..4a82ce2275 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -82994,6 +82994,25 @@ macro; @code{removefr}, for removing reset relations between counters; and ;; It contains a collection of packages, with different licenses. (license (list license:public-domain license:lppl)))) +(define-public texlive-frame + (package + (name "texlive-frame") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/frame/" "tex/generic/frame/") + (base32 + "02n15mi5amvrm6pnr3hkrw6rww2an437b6nff8j4gh6x7vhapygn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/frame") + (synopsis "Framed boxes for Plain TeX") + (description + "This package provides a jiffy file (taken from @code{fancybox}) for placing +a frame around a box of text. The macros also provide for typesetting an +empty box of given dimensions.") + (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