From 9bfb474b745cf8f44ae965270e370ecfc9b7edad Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:01 +0200 Subject: [PATCH] gnu: Add texlive-colorist. * gnu/packages/tex.scm (texlive-colorist): 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 e91b4a0e46..17b89ef669 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -86911,6 +86911,27 @@ (define-public texlive-leaflet external script is necessary.") (license license:lppl1.3+))) +(define-public texlive-colorist + (package + (name "texlive-colorist") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/colorist/" "tex/latex/colorist/") + (base32 + "0c4m2c4gapdkd577v69p1nhqgz1mj4x3lfpy0v5398zx5xncr17c"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-projlib)) + (home-page "https://ctan.org/pkg/colorist") + (synopsis "Write your articles or books in a colorful way") + (description + "This package offers you a LaTeX style file and two classes to typeset +articles or books in a colorful way. These classes currently have native +support for English, French, German, Italian, Portuguese (European and +Brazilian), and Spanish typesetting. They compile with any major TeX engine.") + (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