diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:02:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:41 +0200 |
commit | b2ea38c930645526bd5c898ad5316fe117ed9669 (patch) | |
tree | 781a5af0a5b737f28769f3b21ee599bacc770412 /gnu/packages | |
parent | 36a979d6793e669658c96842830a2265bf641e32 (diff) | |
download | guix-b2ea38c930645526bd5c898ad5316fe117ed9669.tar.gz |
gnu: Add texlive-tagging.
* gnu/packages/tex.scm (texlive-tagging): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b68108d2ff..d33c71240a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -97327,6 +97327,25 @@ the content and style of the table, and the style of the table can be completely set in @code{keyval} way.") (license license:lppl1.3c))) +(define-public texlive-tagging + (package + (name "texlive-tagging") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tagging/" "tex/latex/tagging/") + (base32 + "1w1rjdfaamk1ifjv0k39hnc70aj9h5iw3l7l9cnbf8yrkkha84f4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tagging") + (synopsis "Document configuration with tags") + (description + "The package allows the user to generate multiple documents from a single +source, by marking pieces of the document with tags and specifying which +marked pieces to include or exclude.") + (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 |