diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-16 17:24:38 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:47 +0200 |
commit | 7490ea97d5b20957bc67da956b58a845b67195f4 (patch) | |
tree | fd1246a9f21ab18327dfb8f064b7962f375c8b1a | |
parent | a9ea71d9f6ca017ebe92c282e5e6e2da7bd2c77f (diff) | |
download | guix-7490ea97d5b20957bc67da956b58a845b67195f4.tar.gz |
gnu: Add texlive-texaccents.
* gnu/packages/tex.scm (texlive-texaccents): 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 65d68defed..36823c197c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6224,6 +6224,28 @@ LaTeX files to EBook formats such as EPUB, MOBI and EPUB3. TeX4ht is used as the conversion engine.") (license license:lppl1.3+))) +(define-public texlive-texaccents + (package + (name "texlive-texaccents") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/texaccents.1" + "doc/man/man1/texaccents.man1.pdf" + "doc/support/texaccents/" + "scripts/texaccents/" + "source/support/texaccents/") + (base32 + "1kh4cpvrxgcvnmzxgb3my4jawyqd4348cy6h195346pvdb5xsphh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/texaccents") + (synopsis "Convert composite accented characters to Unicode") + (description + "This small utility, written in SNOBOL, converts the composition of +special characters to Unicode.") + (license license:expat))) + (define-public texlive-texdraw (package (name "texlive-texdraw") |