diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 21:55:40 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:02 +0200 |
commit | 5f08f4191fbce0e3842bc2a9103f3a56154a48cb (patch) | |
tree | e3f36c079a314cfb536d677022ad74c72d3a9211 | |
parent | 067da83bcd878628d395d1df0bd0888cc06fc75b (diff) | |
download | guix-5f08f4191fbce0e3842bc2a9103f3a56154a48cb.tar.gz guix-5f08f4191fbce0e3842bc2a9103f3a56154a48cb.zip |
gnu: Add texlive-byo-twemojis.
* gnu/packages/tex.scm (texlive-byo-twemojis): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d8343aa295..14149cd005 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16416,6 +16416,28 @@ floors.") "The package provides an Eepic driver to use @code{pict2e} facilities.") (license license:expat))) +(define-public texlive-byo-twemojis + (package + (name "texlive-byo-twemojis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/byo-twemojis/" + "source/latex/byo-twemojis/" + "tex/latex/byo-twemojis/") + (base32 + "0wnl6jcwrkxvzfsq04kabxanraa8zi08fjg4a1b7cqpawiphf8jp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/byo-twemojis") + (synopsis "Build Your Own Twemojis with TikZ") + (description + "This package provides the means to create your own emojis (the simple, +round, and mostly yellow ones) from elements of existing emojis. The provided +command creates a TikZ picture from the stated elements with multiple +possibilities to modify the result in color and position.") + (license (list license:cc-by4.0 license:lppl1.3+)))) + (define-public texlive-gates (package (name "texlive-gates") |