diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 13:19:50 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:25 +0200 |
commit | bc9094beb72b132e906b66b3217db7006dd405b5 (patch) | |
tree | 30309bf36d45d99a80b7483abbcf6146a9b4eaa4 | |
parent | ca2b893d88cc92e2441ce6eaee9b10d22b128888 (diff) | |
download | guix-bc9094beb72b132e906b66b3217db7006dd405b5.tar.gz guix-bc9094beb72b132e906b66b3217db7006dd405b5.zip |
gnu: texlive-nth: Refresh package definition.
* gnu/packages/tex.scm (texlive-nth): Remove SIMPLE-TEXLIVE-PACKAGE
call.
-rw-r--r-- | gnu/packages/tex.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index fc4da051f2..5be52629e6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11938,13 +11938,15 @@ terms and in terms of the collating order of the text being processed.") (define-public texlive-nth (package - (inherit (simple-texlive-package - "texlive-nth" - (list "tex/generic/nth/") - (base32 - "0716sd99xjdkplm7jdmg4lx8lpfnnx6mxjp1l1sp2bfqcg73p4hm") - #:trivial? #t)) - (home-page "https://ctan.org/macros/generic/misc/nth.sty") + (name "texlive-nth") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "tex/generic/nth/") + (base32 + "0716sd99xjdkplm7jdmg4lx8lpfnnx6mxjp1l1sp2bfqcg73p4hm"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/nth") (synopsis "Generate English ordinal numbers") (description "The command @code{\\nth{<number>}} generates English ordinal numbers of |