diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-06-27 15:47:16 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-06-28 07:56:50 +0200 |
commit | 171160d56931ba3558951fa95ead481988813112 (patch) | |
tree | 1298380ff20aad26d0d1fbee6b2aaad9b49e9323 /gnu/packages/tex.scm | |
parent | 9b416042d162c01b8aa1a8dcac6108847864eb3e (diff) | |
download | guix-171160d56931ba3558951fa95ead481988813112.tar guix-171160d56931ba3558951fa95ead481988813112.tar.gz |
gnu: Add texlive-latex-seminar.
* gnu/packages/tex.scm (texlive-latex-seminar): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 819dcd3c3c..2d7d929422 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1469,6 +1469,33 @@ that are compatible with @code{natbib}: @code{plainnat}, @code{unsrtnat}, designed from the start to be compatible with @code{natbib}.") (license license:lppl))) +(define-public texlive-latex-seminar + (package + (name "texlive-latex-seminar") + (version (number->string %texlive-revision)) + (source (origin + (method svn-fetch) + (uri (svn-reference + (url (string-append "svn://www.tug.org/texlive/tags/" + %texlive-tag "/Master/texmf-dist/" + "/tex/latex/seminar")) + (revision %texlive-revision))) + (sha256 + (base32 + "0y4i651b75y6006n03x8n86bsqvjsailvvz9bhzy51dzsznqidq0")))) + (build-system texlive-build-system) + (arguments '(#:tex-directory "latex/seminar")) + (home-page "http://www.ctan.org/pkg/seminar") + (synopsis "Make overhead slides") + ;; TODO: This package may need fancybox and xcomment at runtime. + (description + "This package provides a class that produces overhead +slides (transparencies), with many facilities. Seminar is not nowadays +reckoned a good basis for a presentation — users are advised to use more +recent classes such as powerdot or beamer, both of which are tuned to +21st-century presentation styles.") + (license license:lppl1.2+))) + (define texlive-texmf (package (name "texlive-texmf") |