diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:05:04 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:31 +0200 |
commit | 21e09455fc0c255bd95cbeebc1e06ffe4e85dd0d (patch) | |
tree | 3cdb4d7bbf0c1d2759436cf1f87baa891ef3cd8c | |
parent | 8ebd428f58d42cd71a9e5f15a1694437494ec05c (diff) | |
download | guix-21e09455fc0c255bd95cbeebc1e06ffe4e85dd0d.tar.gz |
gnu: Add texlive-minim-xmp.
* gnu/packages/tex.scm (texlive-minim-xmp): New variable.
-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 cfd8776105..7efe04edac 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17064,6 +17064,26 @@ 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-minim-xmp + (package + (name "texlive-minim-xmp") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/minim-xmp/" + "tex/luatex/minim-xmp/") + (base32 + "1g50pal1vxcyl0xvdkbrk26z70kn8s38sqy5c848jdbl0fx29vla"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/minim-xmp") + (synopsis "Embed XMP metadata in PDF with LuaTeX") + (description + "This package enables the inclusion of XMP (eXtensible Metadata Platform) +data in the pdf output generated by (plain) LuaTeX. The use of XMP is +required by PDF standards such as PDF/A.") + (license license:eupl1.2))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |