diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:30:27 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:59 +0200 |
commit | 793b25629758b6073e317b4ac99205f7ee7a1a02 (patch) | |
tree | 1f4a3f4b88389c59742adc533debab0d5cfe8faf /gnu | |
parent | 45d47c620cf7f6604cc27578014df208977095de (diff) |
gnu: Add texlive-qrbill.
* gnu/packages/tex.scm (texlive-qrbill): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 87435a5d65..02282f26dc 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -25778,6 +25778,26 @@ specifying the elements of the tree; you build up your tree with those commands, and then issue the @code{\\tree} command to typeset the whole.") (license license:lppl))) +(define-public texlive-qrbill + (package + (name "texlive-qrbill") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/qrbill/" "scripts/qrbill/" + "source/latex/qrbill/" "tex/latex/qrbill/") + (base32 + "0q0m2vfpndrdvihskc50imkzx6098syq9rz8mgpnl0h1ickfmx33"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/qrbill") + (synopsis "Create QR bills using LaTeX") + (description + "This LaTeX package provides support for creating QR-bills for the new +Swiss payment standards. This implementation is intended to offer an option +to support these regulations and can be adapted for international use.") + (license (list license:lppl1.3c license:bsd-3)))) + (define-public texlive-qsharp (package (name "texlive-qsharp") |