diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-07-09 22:23:42 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-07-17 14:00:12 +0200 |
commit | 84f8035a62135e43ddf386dbfd3ad2ccacff7629 (patch) | |
tree | 46788796a485f889b817ac358a4cdbd21b6eeedb /gnu/packages | |
parent | f47d1a52e4fc22bd5ffd6f63ad2f65e6d0a05294 (diff) | |
download | patches-84f8035a62135e43ddf386dbfd3ad2ccacff7629.tar patches-84f8035a62135e43ddf386dbfd3ad2ccacff7629.tar.gz |
gnu: Add texlive-latex-supertabular.
* gnu/packages/tex.scm (texlive-latex-supertabular): New variable.
Diffstat (limited to 'gnu/packages')
-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 336b53decf..73b282f699 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1812,6 +1812,28 @@ pdf and HTML backends. The package is distributed with the @code{backref} and @code{nameref} packages, which make use of the facilities of @code{hyperref}.") (license license:lppl1.3+))) +(define-public texlive-latex-supertabular + (package + (name "texlive-latex-supertabular") + (version (number->string %texlive-revision)) + (source (origin + (method svn-fetch) + (uri (texlive-ref "latex" "supertabular")) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3")))) + (build-system texlive-build-system) + (arguments '(#:tex-directory "latex/supertabular")) + (home-page "http://www.ctan.org/pkg/supertabular") + (synopsis "Multi-page tables package") + (description + "This package was a predecessor of @code{longtable}; the newer +package (designed on quite different principles) is easier to use and more +flexible, in many cases, but supertabular retains its usefulness in a few +situations where longtable has problems.") + (license license:lppl1.3+))) + (define-public texlive-tex-texinfo (package (name "texlive-tex-texinfo") |