diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 15:10:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 15:45:54 +0200 |
commit | 222f7d506041b06fe4f90b1dbbdadd11a037a01b (patch) | |
tree | 22f43b5f3f0ae0ae3690a0080f03cfe12415686d /gnu/packages | |
parent | c9ce2168bd8eef8ad79a95764454dd8fe54e8219 (diff) | |
download | guix-222f7d506041b06fe4f90b1dbbdadd11a037a01b.tar.gz guix-222f7d506041b06fe4f90b1dbbdadd11a037a01b.zip |
gnu: Add texlive-jeuxcartes.
* gnu/packages/tex.scm (texlive-jeuxcartes): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5dc5b56328..1f9c41109b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7983,6 +7983,30 @@ digit form. This package provides support for spelling out numbers in Italian words, both in cardinal and in ordinal form.") (license license:lppl))) +(define-public texlive-jeuxcartes + (package + (name "texlive-jeuxcartes") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/jeuxcartes/" + "tex/latex/jeuxcartes/") + (base32 + "0imwfdwpap755id1k3cqk2p71nqsddc7g8kp3cc8376j4nc34c8a"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/jeuxcartes") + (synopsis "Macros to insert playing cards") + (description + "This package provides macros to insert playing cards, single, or +hand, or random-hand, Poker or French Tarot or Uno, from PNG files.") + (license + (list license:cc-by-sa4.0 + license:expat + license:lgpl2.1 + license:lppl1.3c + license:public-domain)))) + (define-public texlive-jfmutil (package (name "texlive-jfmutil") |