diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:17:26 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:33 +0200 |
commit | f5993cfec7768933810bf0be99f82bb126f0c419 (patch) | |
tree | fac6abb0bc9d9a1d38c756a221f4fa860a696c86 | |
parent | 71e96b62f3125cbafdd1680bd346e6c2d02ef9d2 (diff) | |
download | guix-f5993cfec7768933810bf0be99f82bb126f0c419.tar.gz guix-f5993cfec7768933810bf0be99f82bb126f0c419.zip |
gnu: Add texlive-pgfmorepages.
* gnu/packages/tex.scm (texlive-pgfmorepages): New variable.
-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 268990cfc0..8cc638cfdb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3203,6 +3203,27 @@ Currently, the package contains modules for drawing DNA sequencing chromatograms and protein domain diagrams.") (license license:lppl1.3+))) +(define-public texlive-pgfmorepages + (package + (name "texlive-pgfmorepages") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pgfmorepages/" + "tex/latex/pgfmorepages/") + (base32 + "0k0njkw34ql0vlpmay155rr4v0sszizhh1pixy20npbk26dkzljw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pgfmorepages") + (synopsis "Assemble multiple logical pages onto a physical page") + (description + "This package replaces and extends the @code{pgfpages} sub-package of the +PGF system. It provides the capability to arrange multiple logical pages on +multiple physical pages, for example as for arranging pages to make +booklets.") + (license license:lppl1.3c))) + (define-public texlive-amiri (package (name "texlive-amiri") |