diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:04:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:19 +0200 |
commit | 84896144908da605bab7e529977607ef9c37301b (patch) | |
tree | 267e694f2b9663618f3b9a2d7f7af17fa4ff0923 /gnu | |
parent | f777e4e94643aee174f6173f494815dd42d3ca50 (diff) | |
download | guix-84896144908da605bab7e529977607ef9c37301b.tar guix-84896144908da605bab7e529977607ef9c37301b.tar.gz |
gnu: Add texlive-verbdef.
* gnu/packages/tex.scm (texlive-verbdef): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index fb56e95cb5..38c8b6a2db 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -99323,6 +99323,28 @@ used, but does no checking and may therefore overwrite an important file if used injudiciously.") (license license:lppl))) +(define-public texlive-verbdef + (package + (name "texlive-verbdef") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/verbdef/" "tex/latex/verbdef/") + (base32 + "1l6sm2mk7c197qicxlagl1hrfcaqswpq7b5a22i7m7gq1wpa8yvg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/verbdef") + (synopsis "Define commands which expand to verbatim text") + (description + "The package defines a single command @code{\\verbdef} (which has a starred +form, like @code{\\verb}). @code{\\verbdef} will define a robust command +whose body expands to verbatim text. By using commands defined by +@code{\\verbdef}, one can put verbatim text into the arguments of commands; +since the defined command is robust, it doesn't matter if the argument is +moving.") + (license license:lppl))) + ;;; ;;; 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 |