diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:19:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:35 +0200 |
commit | 909a0b7aa902a0434ee7307a33e91e163d132189 (patch) | |
tree | 4302210c87f7923fcfa14df5f7d20db439c3cba7 | |
parent | a1b56241da1d4a4fa7a132918f874f7a17daffda (diff) | |
download | guix-909a0b7aa902a0434ee7307a33e91e163d132189.tar.gz guix-909a0b7aa902a0434ee7307a33e91e163d132189.zip |
gnu: Add texlive-pixelart.
* gnu/packages/tex.scm (texlive-pixelart): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 60bb9beba2..d9a5a5e7d0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3361,6 +3361,24 @@ package uses coordinates derived from GhostView and labels are placed with automatic and consistent spacing relative to the object labelled.") (license license:lppl))) +(define-public texlive-pixelart + (package + (name "texlive-pixelart") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pixelart/" "tex/latex/pixelart/") + (base32 + "14hridmq92md46vxaiv8ja5lij2zl449vbvq2x2dv4qqs7bi42ab"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pixelart") + (synopsis "Draw pixel-art pictures") + (description + "This package provides a LuaLaTeX package to draw pixel-art pictures +using TikZ.") + (license license:lppl1.3+))) + (define-public texlive-amiri (package (name "texlive-amiri") |