From f7295b10ccbfc98493757502b8ae5eec2c65a446 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 19 Jun 2023 15:55:00 +0200 Subject: [PATCH] gnu: Add texlive-xecolor. * gnu/packages/tex.scm (texlive-xecolor): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5610bdcfd7..5ea1ff1f8d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7297,6 +7297,26 @@ Everything else remains the same and users should consult the original documentation for usage information.") (license license:lppl1.3+))) +(define-public texlive-xecolor + (package + (name "texlive-xecolor") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/xecolor/" + "tex/xelatex/xecolor/") + (base32 + "0adzg2j1lmclr5zcs8da3m1b9q5xs50rxga6k2pzzxy2x0nh1xpi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xecolor") + (synopsis "Support for color in XeLaTeX") + (description + "This is a simple package which defines about 140 different colours using +XeTeX's colour feature. The colours can be used in bidirectional texts +without any problem.") + (license license:lppl1.3+))) + (define-public texlive-currfile (package (name "texlive-currfile")