diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:28:50 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 19:42:51 +0200 |
commit | 2f54a009d2fe1b8802fabb67e274283dcc8f2090 (patch) | |
tree | 4f1db4a496a66f5a65a125461a4d1d9101544123 | |
parent | 5af6447af3b9af725fb753cffa3005548c497a21 (diff) | |
download | guix-2f54a009d2fe1b8802fabb67e274283dcc8f2090.tar guix-2f54a009d2fe1b8802fabb67e274283dcc8f2090.tar.gz |
gnu: Add texlive-sexam.
* gnu/packages/tex.scm (texlive-sexam): 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 877bcf49c3..fdd96712ab 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -19782,6 +19782,24 @@ display many variants of snowman") (description "The package will typeset cards for use in a game of Set.") (license license:gpl3))) +(define-public texlive-sexam + (package + (name "texlive-sexam") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/sexam/" "tex/xelatex/sexam/") + (base32 + "0bwzxm8xj7p930rgxh6j6rzb7r26i0w61ixy74wkqwmvb3951rf6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sexam") + (synopsis "Typeset Arabic exam scripts") + (description + "The package provides a modified version of the @code{exam} package made +compatible with XeLaTeX and Polyglossia to typeset Arabic exams.") + (license license:lppl1.3+))) + (define-public texlive-signchart (package (name "texlive-signchart") |