diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:26:45 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:21 +0200 |
commit | 5e07c00793aa6e0fac51145ff7ef527ab1bd7391 (patch) | |
tree | ce7bf0d6c2e483a2f47e7e194464c5a7615932ef | |
parent | 58d2c466063c54959fc5ef7aaf36463a3611ce27 (diff) | |
download | guix-5e07c00793aa6e0fac51145ff7ef527ab1bd7391.tar guix-5e07c00793aa6e0fac51145ff7ef527ab1bd7391.tar.gz |
gnu: Add texlive-br-lex.
* gnu/packages/tex.scm (texlive-br-lex): New variable.
-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 5e34133c84..f9f5090c9e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7198,6 +7198,24 @@ those long IUPAC compound names, and some chemical idioms. It also supports the labelling of compounds and reference to labelled compounds.") (license license:lppl))) +(define-public texlive-br-lex + (package + (name "texlive-br-lex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/br-lex/" "tex/latex/br-lex/") + (base32 + "154mjkywvyif57zvqbq5wxs84357148km2x0lqqdx6nanr3vwmxb"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/br-lex") + (synopsis "Class for typesetting Brazilian legal texts") + (description + "This class implements rules to typeset Brazilian legal texts. Its +purpose is to be an easy-to-use implementation for the end-user.") + (license license:lppl1.3+))) + (define-public texlive-braille (package (name "texlive-braille") |