diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:09:47 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:33:13 +0200 |
commit | afe8c44082f4219a65abe2e9affa647637909e33 (patch) | |
tree | 4b7736ac82c3d856b9bb757483aac5f3a32e30ed /gnu/packages | |
parent | fe8241b570293865d94751e9ed73681fa220d3a7 (diff) |
gnu: Add texlive-quran-bn.
* gnu/packages/tex.scm (texlive-quran-bn): New variable.
Diffstat (limited to 'gnu/packages')
-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 6ca74a4166..b51490d3b8 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17981,6 +17981,24 @@ designed to help users generate circuits.") drawing quantum circuit diagrams.") (license license:cc-by4.0))) +(define-public texlive-quran-bn + (package + (name "texlive-quran-bn") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/quran-bn/" "tex/latex/quran-bn/") + (base32 + "1zlm02drh9qfasxf0bwhvrmp521ixzys2aqq896339grkzay0g6q"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/quran-bn") + (synopsis "Bengali translations to the @code{quran} package") + (description + "The package is prepared for typesetting some Bengali translations of the +Holy Quran. It adds two Bengali translations to the @code{quran} package.") + (license license:lppl1.3+))) + (define-public texlive-quran-de (package (name "texlive-quran-de") |