diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:04:53 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:31 +0200 |
commit | 8ebd428f58d42cd71a9e5f15a1694437494ec05c (patch) | |
tree | 26b70b9b2abc49165442109709548a13024f9776 /gnu | |
parent | 60d0ee5a4fd630c3e4991d74c989b8d86e3fa41d (diff) | |
download | guix-8ebd428f58d42cd71a9e5f15a1694437494ec05c.tar.gz |
gnu: Add texlive-minim-pdf.
* gnu/packages/tex.scm (texlive-minim-pdf): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5973502b2f..cfd8776105 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17044,6 +17044,26 @@ code from within MetaPost. With the included @code{minim-mp} format file, you can even use LuaTeX as a stand-alone MetaPost compiler.") (license license:eupl1.2))) +(define-public texlive-minim-pdf + (package + (name "texlive-minim-pdf") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/minim-pdf/" + "tex/luatex/minim-pdf/") + (base32 + "10ls1i1141lh2f69r63wmvk2dg7j6g9gl0d0qk1m73byrg4zvbcp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/minim-pdf") + (synopsis "Low-level PDF integration for LuaTeX") + (description + "This package adds low-level support to plain LuaTeX for marking up the +structure of a PDF document. The implementation is rather basic, but should +allow you to make your PDFs fully PDF/A-compliant.") + (license license:eupl1.2))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |