diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 10:44:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:17:22 +0200 |
commit | 45e916cb95a14c41d26338f457b03160ab865337 (patch) | |
tree | 67b53189d4fba6682cfc7a6e4bdc7393628b7881 | |
parent | 32ab7ef34a5207b5813289311e03e8aa3dba0a7c (diff) |
gnu: Add texlive-chronosys.
* gnu/packages/tex.scm (texlive-chronosys): New variable.
-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 9fbf6fef3f..baf125ad6f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1393,6 +1393,25 @@ mechanism. @end itemize") (license license:lppl1.3+))) +(define-public texlive-chronosys + (package + (name "texlive-chronosys") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/chronosys/" + "tex/generic/chronosys/") + (base32 + "145ap67ykdkp2f0ahasp9sjccrv1wzxdfl05nq6hbi6z65pk56s5"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/chronosys") + (synopsis "Drawing time-line diagrams") + (description + "This package provides macros to produce time line diagrams. +Interfaces for Plain TeX, ConTeXt and LaTeX are provided.") + (license license:lppl1.3+))) + (define-public texlive-dosepsbin (package (name "texlive-dosepsbin") |