From 5432903137f0607adff5c411eaebe7f5199f5b0e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:02:11 +0200 Subject: [PATCH] gnu: Add texlive-svgcolor. * gnu/packages/tex.scm (texlive-svgcolor): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a25e423c76..95350e346d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96833,6 +96833,24 @@ (define-public texlive-suppose He does not recommend using them in formal work.") (license license:lppl1.3c))) +(define-public texlive-svgcolor + (package + (name "texlive-svgcolor") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/svgcolor/" "tex/latex/svgcolor/") + (base32 + "1fhgxms95j65mn3q9bj2xckp7gsjza2swwqkvlhzszk5kc2lq0l4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/svgcolor") + (synopsis "Define SVG named colours") + (description + "The package defines the W3C @acronym{SVG, Scalable Vector Graphics} colour +names for use with both the @code{color} and PSTricks packages.") + (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