diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 13:18:25 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:25 +0200 |
commit | ca2b893d88cc92e2441ce6eaee9b10d22b128888 (patch) | |
tree | c3ce8aa8972f0f377c2a86a740ef74660ee49e55 | |
parent | 1595b82f197d7169bb85aabf44dbbf8451a60b2c (diff) | |
download | guix-ca2b893d88cc92e2441ce6eaee9b10d22b128888.tar.gz guix-ca2b893d88cc92e2441ce6eaee9b10d22b128888.zip |
gnu: texlive-fmtcount: Refresh package definition.
* gnu/packages/tex.scm (texlive-fmtcount): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-AMSMATH, TEXLIVE-ETOOLBOX, TEXLIVE-GRAPHICS,
TEXLIVE-XKEYVAL.
-rw-r--r-- | gnu/packages/tex.scm | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8e16167249..fc4da051f2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11980,25 +11980,29 @@ making a list of theorems, analagous to @code{\\listoffigures}.") (define-public texlive-fmtcount (package - (inherit (simple-texlive-package - "texlive-fmtcount" - (list "doc/latex/fmtcount/" - "scripts/fmtcount/" - "source/latex/fmtcount/" - "tex/latex/fmtcount/") - (base32 - "1biw0g6s2arq6kq52c1yfkl0vzafja2az65c3d0syq0vgjzj9763") - #:trivial? #t)) - (home-page "https://ctan.org/macros/latex/contrib/fmtcount") + (name "texlive-fmtcount") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/fmtcount/" "scripts/fmtcount/" + "source/latex/fmtcount/" "tex/latex/fmtcount/") + (base32 + "1biw0g6s2arq6kq52c1yfkl0vzafja2az65c3d0syq0vgjzj9763"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-amsmath + texlive-etoolbox + texlive-graphics + texlive-xkeyval)) + (home-page "https://ctan.org/pkg/fmtcount") (synopsis "Display the value of a LaTeX counter in a variety of formats") (description - "The package provides commands that display the value of a LaTeX counter in a -variety of formats (ordinal, text, hexadecimal, decimal, octal, binary etc). -The package offers some multilingual support; configurations for use in English -(both British and American usage), French (including Belgian and Swiss -variants), German, Italian, Portuguese and Spanish documents are provided. This -package was originally provided as part of the author's datetime package, but is -now distributed separately.") + "The package provides commands that display the value of a LaTeX counter +in a variety of formats (ordinal, text, hexadecimal, decimal, octal, binary +etc). The package offers some multilingual support; configurations for use in +English (both British and American usage), French (including Belgian and Swiss +variants), German, Italian, Portuguese and Spanish documents are provided.") (license license:lppl1.3+))) (define-public texlive-inriafonts |