diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 15:47:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:57 +0200 |
commit | 6ca69d663266fd3a38ac13b8c2fa33864fad9d31 (patch) | |
tree | 5bd6bd2fd8bcbb9fd6082ec6f06372ad0ec11dde | |
parent | 9f0d9453d9c9b70e03574d801ca27ae819e3e2de (diff) | |
download | guix-6ca69d663266fd3a38ac13b8c2fa33864fad9d31.tar.gz guix-6ca69d663266fd3a38ac13b8c2fa33864fad9d31.zip |
gnu: Add texlive-businesscard-qrcode.
* gnu/packages/tex.scm (texlive-businesscard-qrcode): 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 96ac7b0279..dd3dce00c0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4514,6 +4514,27 @@ cubic root function. In addition, tangents on all functions and derivatives of polynomials can be calculated.") (license license:lppl))) +(define-public texlive-businesscard-qrcode + (package + (name "texlive-businesscard-qrcode") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/xelatex/businesscard-qrcode/" + "tex/xelatex/businesscard-qrcode/") + (base32 + "0r942lv7mymi9wmmshjgf3vnz2n38m91dzqzrg0dg6bckb09dhmf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/businesscard-qrcode") + (synopsis "Business cards with QR-Code") + (description + "This package generates a configurable business card or visiting card +with full vcard as QR-Code, ready to send to online printers. You can specify +the exact size of the paper and the content within the paper, including +generation of crop marks.") + (license license:lgpl3))) + (define-public texlive-cmarrows (package (name "texlive-cmarrows") |