diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:01:13 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:11 +0200 |
commit | bffe0c898f4d4a82e86c72ad6ce36a4846a998e7 (patch) | |
tree | 9ba68734608f90431778a87cf9a0151968a581e7 /gnu/packages | |
parent | 293f2c7872feaabda90c2a30fe67f7372a9a0348 (diff) | |
download | guix-bffe0c898f4d4a82e86c72ad6ce36a4846a998e7.tar.gz |
gnu: Add texlive-simplivre.
* gnu/packages/tex.scm (texlive-simplivre): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ba2bfb3b34..77b56d7119 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -95736,6 +95736,29 @@ commands, and an invoice is generated automatically with the @code{\\makeinvoice} command.") (license license:gpl3))) +(define-public texlive-simplivre + (package + (name "texlive-simplivre") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/simplivre/" + "tex/latex/simplivre/") + (base32 + "0hi0rdzlsvqw7m0z1qz6cm8zcz0r29rnd5w7d5624ihqnjscn6j5"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-minimalist)) + (home-page "https://ctan.org/pkg/simplivre") + (synopsis "Write your books in a simple and clear way") + (description + "This package provides a LaTeX class for typesetting books with a simple and +clear design. Currently, it has native support for Chinese (simplified and +traditional), English, French, German, Italian, Japanese, Portuguese (European +and Brazilian), Russian and Spanish typesetting. It compiles with either +XeLaTeX or LuaLaTeX.") + (license license:lppl1.3c))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |