diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:03:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:57 +0200 |
commit | 6b421b76188258e840daf55066b4830161cd7df5 (patch) | |
tree | 6a81a8ffdfdc4686715c87c7f5b5cf1b61a72b6f | |
parent | 9ee703d892e6f9dc99321f10047807e6a0a76fad (diff) |
gnu: Add texlive-ticket.
* gnu/packages/tex.scm (texlive-ticket): 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 b3c68a3d66..ef012810b3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98169,6 +98169,27 @@ the user. The package is designed to work with the @code{memoir} class, and also requires PerlTeX and TikZ.") (license license:gpl3))) +(define-public texlive-ticket + (package + (name "texlive-ticket") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ticket/" "tex/latex/ticket/") + (base32 + "1hn6hn8m5zf8srj67g2nwjl8jnlzbnix18db0adidf83mzwbpjws"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ticket") + (synopsis "Make labels, visiting-cards, pins with LaTeX") + (description + "This package provides an easy to handle interface to produce visiting cards, +labels for your files, stickers, pins and other stuff for your office, +conferences etc. All you need is a definition of your ticket included in +a ticket definition file and the two commands @code{\\ticketdefault} and +@code{\\ticket}.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |