diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 19:39:45 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 20:25:27 +0200 |
commit | 14e27ebe21ba552ac8212b53bcb817835c4d91c5 (patch) | |
tree | 6e152e95772b708566438b2911e1fa53d2d0f7b0 /gnu | |
parent | 68875b72c7b41d922cbbfaac20b870ad6c82e221 (diff) | |
download | guix-14e27ebe21ba552ac8212b53bcb817835c4d91c5.tar.gz guix-14e27ebe21ba552ac8212b53bcb817835c4d91c5.zip |
gnu: Add texlive-liturg.
* gnu/packages/tex.scm (texlive-liturg): New variable.
Diffstat (limited to 'gnu')
-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 473bfecace..e464431a67 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8169,6 +8169,29 @@ and @file{latin7.def}. @end itemize") (license license:lppl1.3c))) +(define-public texlive-liturg + (package + (name "texlive-liturg") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/liturg/" "source/latex/liturg/" + "tex/latex/liturg/") + (base32 + "1nmcz7zg27aasczdv3p6ilsmy66cbfjg9yri45d0pml7m7c56din"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + ;; The "liturg.ins" provided by the package does not generate anything. + ;; As a consequence, there's nothing to build. + (arguments (list #:build-targets #~'())) + (home-page "https://ctan.org/pkg/liturg") + (synopsis "Support for typesetting Catholic liturgical texts") + (description + "The packages offers simple macros for typesetting Catholic liturgical +texts, particularly @code{Missal} and @code{Breviary} texts. The package +assumes availability of Latin typesetting packages.") + (license license:lppl))) + (define-public texlive-logicproof (package (name "texlive-logicproof") |