diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:03:38 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:03 +0200 |
commit | 9d6f0f6a8951f6d6eaf482a739cb5af40c4f3532 (patch) | |
tree | afee004bb6fbd3f44fdcea2424ca361ec275adcb /gnu/packages | |
parent | 77e562d933d809d1f5328e7c3d361d3402be2529 (diff) | |
download | guix-9d6f0f6a8951f6d6eaf482a739cb5af40c4f3532.tar.gz |
gnu: Add texlive-totalcount.
* gnu/packages/tex.scm (texlive-totalcount): 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 8b89013a43..696a4dcb28 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98485,6 +98485,25 @@ separation lines. The typical use case is a table spanning multiple pages that contains a list of hierarchically organized topics.") (license license:expat))) +(define-public texlive-totalcount + (package + (name "texlive-totalcount") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/totalcount/" + "source/latex/totalcount/" + "tex/latex/totalcount/") + (base32 + "1c24h0snldg1lpijsm7h65dr7bs32dk6nsvlgmcc92kmxc13y9lj"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/totalcount") + (synopsis "Commands for typesetting total values of counters") + (description + "This LaTeX package offers commands for typesetting total values of counters.") + (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 |