diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 13:04:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 17:12:54 +0200 |
commit | f9dc8c9067ff4f7fcaf3dc965f943e42d6e3ec4c (patch) | |
tree | 4bd40691593072671f6732a96d7fc06ae9fa8043 | |
parent | 587a235e99b57aa10fe49d67eb0df16f0a630a9e (diff) |
gnu: Add texlive-backnaur.
* gnu/packages/tex.scm (texlive-backnaur): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b1c43d9654..0c4a6cc0d1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1690,6 +1690,27 @@ the pdf code inserted in the output file. The processing involves a run of @command{pdflatex}.") (license license:gpl3+))) +(define-public texlive-backnaur + (package + (name "texlive-backnaur") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/backnaur/" + "source/latex/backnaur/" + "tex/latex/backnaur/") + (base32 + "168ng265vdl74l9c2jmp34ba6ir5i6c1jb7jpyzc31g9snqmyr09"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/backnaur") + (synopsis "Typeset Backus Naur Form definitions") + (description + "The package typesets Backus-Naur Form (BNF) definitions. It prints +formatted lists of productions, with numbers if required. It can also print +in-line BNF expressions using math mode.") + (license license:lppl1.3c))) + (define-public texlive-barr (package (name "texlive-barr") |