diff options
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c3281dcbaf..1a6fe5ae8c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2546,6 +2546,27 @@ Several macros are provided to draw the global mesh, the set of points, or a particular step of the algorithm.") (license license:lppl1.3+))) +(define-public texlive-luasseq + (package + (name "texlive-luasseq") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/luasseq/" "scripts/luasseq/" + "source/lualatex/luasseq/" + "tex/lualatex/luasseq/") + (base32 + "1mkhzysyhpbblpwwy4d4983b5np23jnxl9ai986g0n1vpyv0kc47"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/luasseq") + (synopsis "Drawing spectral sequences in LuaLaTeX") + (description + "The package is an update of the author's @code{sseq} package, for use +with LuaLaTeX. This version uses less memory, and operates faster than the +original; it also offers several enhancements.") + (license license:lppl1.3+))) + (define-public texlive-mflogo (package (name "texlive-mflogo") |