me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-inline-images.

* gnu/packages/tex.scm (texlive-inline-images): New variable.
master
Nicolas Goaziou 2023-08-29 15:52:59 +02:00
parent 01588cca08
commit 13a003a26b
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 20 additions and 0 deletions

View File

@ -85571,6 +85571,26 @@ Shell escape is also needed if @command{splitindex} is used. This is a fork
of @code{imakeidx}, with new features and fixed bugs.") of @code{imakeidx}, with new features and fixed bugs.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-public texlive-inline-images
(package
(name "texlive-inline-images")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/inline-images/"
"tex/latex/inline-images/")
(base32
"00bmn7fi72wyk202lii51r0gflqsrnxjlddpd0hq7j1j06rkpyvg")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/inline-images")
(synopsis "Inline images in base64 encoding")
(description
"The package provides a command @code{\\inlineimg} to dynamically create
a file containing the inline image in base64 format, which is decoded and
included in the source file.")
(license license:lgpl3)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar ;;; of a merge conflict, place them above by existing packages with similar