diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 15:38:10 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:23 +0200 |
commit | cf4d8d84fa5a8b196cc1474143324adf289af6aa (patch) | |
tree | 6d94438d3678ea460dd7d451f3d452f8e27c7105 /gnu | |
parent | d47b3d38ef8663fbad95825297e604d2803122ef (diff) | |
download | guix-cf4d8d84fa5a8b196cc1474143324adf289af6aa.tar.gz |
gnu: Add texlive-complexity.
* gnu/packages/tex.scm (texlive-complexity): 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 fc6761d918..c5a48709cf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2646,6 +2646,28 @@ argument is less than, equal to, or greater than the second argument. Sorting is alphabetic, using ASCII collating order.") (license license:public-domain))) +(define-public texlive-complexity + (package + (name "texlive-complexity") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/complexity/" + "tex/latex/complexity/") + (base32 + "0yqv0qp4i6jkjkrsvjzq5r2x282y5maq6w5cbvkspp7d0g4sg0ph"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/complexity") + (synopsis "Computational complexity class names") + (description + "Complexity is a LaTeX package that defines commands to typeset +Computational Complexity Classes such as @samp{$\\P$} and @samp{$\\NP$} (as +well as hundreds of others). It also offers several options including which +font classes are typeset in and how many are defined (all of them or just the +basic, most commonly used ones).") + (license license:lppl1.3c))) + (define-public texlive-crossrefenum (package (name "texlive-crossrefenum") |