diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 10:48:36 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:17:26 +0200 |
commit | 80a0fd737f78200a1a9ce01317af51dbd57f6163 (patch) | |
tree | 6228997b43c062b890d85a86ad64ce0231120084 /gnu | |
parent | c37da0c23a8d7ec87dfae3e35abeae8a3e61edd6 (diff) | |
download | guix-80a0fd737f78200a1a9ce01317af51dbd57f6163.tar.gz guix-80a0fd737f78200a1a9ce01317af51dbd57f6163.zip |
gnu: Add texlive-epsf-dvipdfmx.
* gnu/packages/tex.scm (texlive-epsf-dvipdfmx): New variable.
Diffstat (limited to 'gnu')
-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 ac8f49f616..787192c8b7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2386,6 +2386,27 @@ epigram, laid out on a single line) whether to produce a line or a displayed paragraph.") (license license:public-domain))) +(define-public texlive-epsf-dvipdfmx + (package + (name "texlive-epsf-dvipdfmx") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/plain/epsf-dvipdfmx/" + "tex/plain/epsf-dvipdfmx/") + (base32 + "0xj4hag3nldxxjcpympvra5cdn19nk76af9dxq07ci585gcki3x5"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/epsf-dvipdfmx") + (synopsis "Plain TeX file for using epsf.tex with (x)dvipdfmx") + (description + "@file{epsf-dvipdfmx.tex} is a plain TeX file to be @code{\\input} after +@file{epsf.tex} when using plain TeX with @code{dvipdfmx}. It is needed when +an @file{.eps} file has anything except the origin for the lower-left of its +bounding box.") + (license license:public-domain))) + (define-public texlive-findhyph (package (name "texlive-findhyph") |