diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 15:10:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 15:45:53 +0200 |
commit | 5ac51dbe3ec62e2c9fe5a55dbad36aeb89d195ff (patch) | |
tree | aba6991da9f4b8f8041831b4aa1dd424cd17741c | |
parent | 71404a39dda0e25662aa38bbc6730a1d4c866a6f (diff) |
gnu: Add texlive-hexboard.
* gnu/packages/tex.scm (texlive-hexboard): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e0e655532f..f77ee94bce 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7470,6 +7470,26 @@ adds a collection of useful @acronym{HEP, High Energy Physics} units to the existing SIunits set.") (license license:lppl))) +(define-public texlive-hexboard + (package + (name "texlive-hexboard") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hexboard/" + "source/latex/hexboard/" + "tex/latex/hexboard/") + (base32 + "04z0qhajbjn55mqax4kaw53h7s6g84iy1yh0pfhzj3ib7gd4cpw4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hexboard") + (synopsis "For drawing Hex boards and games") + (description + "@code{hexboard} is a package for LaTeX that should also work with LuaTeX +and XeTeX, that provides functionality for drawing Hex boards and games.") + (license license:cc-by-sa4.0))) + (define-public texlive-hitex (package (name "texlive-hitex") |