diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 10:44:02 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:33:05 +0200 |
commit | 13b2aca1e073737f8bf10398c0483203dabd320c (patch) | |
tree | 5c517cf0ec5c29e902a191d3d0ea2ea81ca37d69 /gnu | |
parent | 6c16b2aa51b9d56edf4a12c86bf298385378e3bd (diff) | |
download | guix-13b2aca1e073737f8bf10398c0483203dabd320c.tar.gz guix-13b2aca1e073737f8bf10398c0483203dabd320c.zip |
gnu: Add texlive-bangtex.
* gnu/packages/tex.scm (texlive-bangtex): New variable.
Diffstat (limited to 'gnu')
-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 aac52a91b6..40698d2698 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2224,6 +2224,28 @@ in-line BNF expressions using math mode.") language and comes with some fonts of its own.") (license (list license:lppl1.3c license:silofl1.1)))) +(define-public texlive-bangtex + (package + (name "texlive-bangtex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bangtex/" + "fonts/source/public/bangtex/" + "fonts/tfm/public/bangtex/" + "tex/latex/bangtex/") + (base32 + "1hmv27wpnwv70gipvfvxs1rwfjqbcy0lgn09hs2ah6ayqgr740im"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/bangtex") + (synopsis "Writing Bangla and Assamese with LaTeX") + (description + "The bundle provides class files for writing Bangla and Assamese with LaTeX, +and Metafont sources for fonts.") + (license license:lppl))) + (define-public texlive-barr (package (name "texlive-barr") |