From 59befed247b169905bc5f51430e082df39fa101c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 26 Jun 2023 15:10:20 +0200 Subject: [PATCH] gnu: Add texlive-pdfextra. * gnu/packages/tex.scm (texlive-pdfextra): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 605acbb98f..21ba24c319 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11769,6 +11769,29 @@ (define-public texlive-pdfarticle with LuaLaTeX.") (license license:expat))) +(define-public texlive-pdfextra + (package + (name "texlive-pdfextra") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/optex/pdfextra/" "tex/luatex/pdfextra/" + "tex/optex/pdfextra/") + (base32 + "0vv7vidcvi6c9bg9rdp00d324d3xfyazpwlc7l4vggz1w6n8l96y"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pdfextra") + (synopsis "Extra PDF features for (Op)TeX") + (description + "This package provides extra PDF features for OpTeX (or in limited form +for plain LuaTeX and LuaLaTeX). As a minimalistic format, OpTeX does not +support advanced features of the PDF file format in its base. This third +party package aims to provide them. As such, it supports insertion of +multimedia (audio, video, 3D), hyperlinks and other actions, triggering +events, transitions, and attachments.") + (license license:bsd-0))) + (define-public texlive-pgf (package (name "texlive-pgf")