From e5fef91ca2118fddd8cceb0df30048e3ac320043 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:04 +0200 Subject: [PATCH] gnu: Add texlive-decorule. * gnu/packages/tex.scm (texlive-decorule): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f30b72108b..ac82d33b24 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -78950,6 +78950,27 @@ within the text.") raised decimal point, instead of the American-style period.") (license license:lppl1.0+))) +(define-public texlive-decorule + (package + (name "texlive-decorule") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/decorule/" + "source/latex/decorule/" + "tex/latex/decorule/") + (base32 + "07l723zd20ds5sa70vk5hhrd7a90jqy3hf70wm5q1gnmbjszj1da"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/decorule") + (synopsis "Decorative swelled rule using font character") + (description + "The package implements a decorative swelled rule using only a symbol from +a font installed with all distributions of TeX, so it works independently, +without the need to install any additional software or fonts.") + (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