From b5ba3ae6370e726ad30aab6ac52f9dee20b6abda Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 17 Aug 2023 15:08:15 +0200 Subject: [PATCH] gnu: Add texlive-customdice. * gnu/packages/tex.scm (texlive-customdice): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f3be9a889d..b6d14f758e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5055,6 +5055,28 @@ (define-public texlive-csassignments as well as several macros for easier math mode usage.") (license license:expat))) +(define-public texlive-customdice + (package + (name "texlive-customdice") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/customdice/" + "source/latex/customdice/" + "tex/latex/customdice/") + (base32 + "0jwhvg13rla5pav0z4wns4s0x25myiqcinv592g6kqnbgwzj4q7g"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/customdice") + (synopsis "Simple commands for drawing customisable dice") + (description + "The @code{customdice} package for LaTeX, LuaLaTeX and XeTeX that +provides functionality for drawing dice. The aim is to provide +highly-customisable but simple-to-use commands, allowing: adding custom text +to dice faces; control over colouring; control over sizing.") + (license license:cc-by-sa4.0))) + (define-public texlive-cvss (package (name "texlive-cvss")