From ce3c235109027fad72d9a1090dd197034602fdc6 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 19 Jun 2023 11:41:46 +0200 Subject: [PATCH] gnu: Add texlive-ccicons. * gnu/packages/tex.scm (texlive-ccicons): New variable. --- gnu/packages/tex.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 88d06ef10a..713a410e98 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1505,6 +1505,34 @@ a LaTeX user is requesting. Tip: installing @code{texlive-cbfonts} will automatically propagate this one.") (license license:lppl1.3c+))) +(define-public texlive-ccicons + (package + (name "texlive-ccicons") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/ccicons/" + "doc/latex/ccicons/" + "fonts/enc/dvips/ccicons/" + "fonts/map/dvips/ccicons/" + "fonts/opentype/public/ccicons/" + "fonts/tfm/public/ccicons/" + "fonts/type1/public/ccicons/" + "source/fonts/ccicons/" + "source/latex/ccicons/" + "tex/latex/ccicons/") + (base32 + "0lyxbjpkxny6hl7pmnpka0gmgx7qv66pibvwcfs9dvwhdcvwjr4x"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ccicons") + (synopsis "LaTeX support for Creative Commons icons") + (description + "The package provides the means to typeset Creative Commons icons, in +documents licensed under CC licences. A font (in Adobe Type 1 format) and +LaTeX support macros are provided.") + (license (list license:lppl1.3c license:silofl1.1)))) + (define-public texlive-cite (package (name "texlive-cite")