From 03006246bf3f4cead003166b952894f2d788467a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:57 +0200 Subject: [PATCH] gnu: Add texlive-froufrou. * gnu/packages/tex.scm (texlive-froufrou): 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 6c80fa3d43..df60eecdaa 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -83037,6 +83037,27 @@ structure for the conditional, greater care taken to allow for the line width in the spacing of formulas.") (license license:gpl3+))) +(define-public texlive-froufrou + (package + (name "texlive-froufrou") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/froufrou/" + "source/latex/froufrou/" + "tex/latex/froufrou/") + (base32 + "1d1ifplkdxb7s8mr7zisbzkr9r5hvn7hk0q5dpzpyx8zwhzyvkss"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/froufrou") + (synopsis "Fancy section separators") + (description + "This package provides fancy separators, which are visual cues that indicate +a change of subject or context without actually starting a new chapter or +section.") + (license license:lppl1.3c))) + ;;; ;;; 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