diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 14:48:56 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:50 +0200 |
commit | 425e7dba4daffa0893496606d3c4c89980cee47b (patch) | |
tree | 4b59cfd1635e8f3ede2f6b65610405b5bece542f /gnu | |
parent | 3aeca58073eff8b7a835f6492e735dd152d9dc99 (diff) | |
download | guix-425e7dba4daffa0893496606d3c4c89980cee47b.tar.gz guix-425e7dba4daffa0893496606d3c4c89980cee47b.zip |
gnu: Add texlive-barcodes.
* gnu/packages/tex.scm (texlive-barcodes): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bd81c33bee..6b4b02fce3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4314,6 +4314,30 @@ a language chosen by the user. In addition, the package supports commands to change the typography of the bibliographies.") (license license:lppl1.0+))) +(define-public texlive-barcodes + (package + (name "texlive-barcodes") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/barcodes/" + "fonts/source/public/barcodes/" + "fonts/tfm/public/barcodes/" + "source/latex/barcodes/" + "tex/latex/barcodes/") + (base32 + "1bxvmmmb4x0zpdkqa399rwdhz6yamfzx2kn2i7a8vz172q0b2msc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/barcodes") + (synopsis "Fonts for making barcodes") + (description + "The package deals with EAN barcodes; Metafont sources for fonts are +provided, and a set of examples; for some codes, a small Perl script is +needed.") + (license license:lppl))) + (define-public texlive-bbcard (package (name "texlive-bbcard") |