diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 15:51:13 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:00 +0200 |
commit | e2f661a3838413b76075f44bff3a2da08913785b (patch) | |
tree | 0834552932c73986a043ff6dc91bde3eeb7f5519 | |
parent | ccf2d15eb247643bff0d1a6e2e274a83a6aa361c (diff) | |
download | guix-e2f661a3838413b76075f44bff3a2da08913785b.tar.gz |
gnu: Add texlive-ptext.
* gnu/packages/tex.scm (texlive-ptext): 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 50b7b1c1f6..c11205e007 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6597,6 +6597,25 @@ re-processing.") (define-deprecated-package texlive-latex-pstool texlive-pstool) +(define-public texlive-ptext + (package + (name "texlive-ptext") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/ptext/" "tex/xelatex/ptext/") + (base32 + "0ipb1mlg266rziznskdxi3iwi0s6374lp8ky0hhbi5llryg505p9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ptext") + (synopsis "Lipsum for Persian") + (description + "The package provides lipsum-like facilities for the Persian language. +The source of the filling text is the Persian epic @emph{the Shanameh} (100 +paragraphs are used).") + (license license:lppl1.2+))) + (define-public texlive-refcount (package (name "texlive-refcount") |