diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:20:08 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:36 +0200 |
commit | d17931ef8137910db088f88899a5c1c874a79073 (patch) | |
tree | 1d21e1f1a5a7d4737bdc5a003229747556822dfd | |
parent | 909a0b7aa902a0434ee7307a33e91e163d132189 (diff) | |
download | guix-d17931ef8137910db088f88899a5c1c874a79073.tar.gz guix-d17931ef8137910db088f88899a5c1c874a79073.zip |
gnu: Add texlive-pixelarttikz.
* gnu/packages/tex.scm (texlive-pixelarttikz): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d9a5a5e7d0..50a470686d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3379,6 +3379,25 @@ automatic and consistent spacing relative to the object labelled.") using TikZ.") (license license:lppl1.3+))) +(define-public texlive-pixelarttikz + (package + (name "texlive-pixelarttikz") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pixelarttikz/" + "tex/latex/pixelarttikz/") + (base32 + "0ymjflng2rlb0bq375f28mbdpr2r7ihqphnpvrh2f0n4f3afv8hx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pixelarttikz") + (synopsis "Work with PixelArts, with TikZ") + (description + "The package defines commands and an environment for displaying pixel +arts.") + (license license:lppl1.3c))) + (define-public texlive-amiri (package (name "texlive-amiri") |