diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-03-06 12:15:17 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-03-06 12:22:17 +0100 |
commit | 280097b71f01608795fbf38ac6d87fd61fe16798 (patch) | |
tree | 3800ad8bf1339f001803d0ea533cfd56d3e7e041 /gnu | |
parent | 36685334a058a62f6fdafa00c5ac7c079f852f6b (diff) | |
download | guix-280097b71f01608795fbf38ac6d87fd61fe16798.tar.gz |
gnu: texlive-hyperref: Add missing files.
* gnu/packages/tex.scm (texlive-hyperref)[arguments]: Add phase to copy missing files. Generate ".sty" files from source when possible. [propagated-inputs]: Add TEXLIVE-ZAPFDING, TEXLIVE-STRINGENC. Remove TEXLIVE-ATVERYEND, TEXLIVE-INFWARERR, TEXLIVE-KVOPTIONS, TEXLIVE-PDFTEXCMDS. Reorder-inputs.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 60 |
1 files changed, 38 insertions, 22 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a6be7aeadc..6f43c632da 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3484,45 +3484,61 @@ XML, using UTF-8 or a suitable 8-bit encoding.") (define-public texlive-hyperref (let ((template (simple-texlive-package "texlive-hyperref" - (list "/doc/latex/hyperref/" - "/source/latex/hyperref/" - ;; These files are not generated from the sources - "/tex/latex/hyperref/minitoc-hyper.sty" - "/tex/latex/hyperref/ntheorem-hyper.sty" - "/tex/latex/hyperref/xr-hyper.sty") - (base32 - "0nmbxaq676m2y9fgdji0bxqchmrli4hwhspijaszx51b3ki6bj2h")))) + (list "doc/latex/hyperref/" + "source/latex/hyperref/" + "tex/latex/hyperref/") + (base32 "052k1nygm4msaivn8245n86km4h41knivigw80q58b7rc13s6hrk")))) (package (inherit template) (arguments (substitute-keyword-arguments (package-arguments template) - ((#:tex-directory _ #t) + ((#:tex-directory _ '()) "latex/hyperref") + ((#:build-targets _ '()) + #~(list "hyperref.ins")) ((#:phases phases) - `(modify-phases ,phases - (add-after 'unpack 'chdir - (lambda _ (chdir "source/latex/hyperref") #t)))))) + #~(modify-phases #$phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "source/latex/hyperref"))) + (replace 'copy-files + (lambda* (#:key inputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append #$output + "/share/texmf-dist/source")) + (doc (string-append #$output:doc + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc) + ;; XXX: These files are not auto-generated from the + ;; sources. + (for-each (lambda (f) + (install-file + (string-append origin "/tex/latex/hyperref/" f) + (string-append + #$output + "/share/texmf-dist/tex/latex/hyperref"))) + '("minitoc-hyper.sty" + "ntheorem-hyper.sty" + "xr-hyper.sty"))))))))) (propagated-inputs - (list texlive-atveryend - texlive-atbegshi + (list texlive-atbegshi + texlive-auxhook texlive-bitset texlive-etexcmds texlive-gettitlestring - texlive-iftex - texlive-infwarerr + texlive-hycolor texlive-intcalc texlive-kvdefinekeys texlive-kvsetkeys + texlive-letltxmacro texlive-ltxcmds texlive-pdfescape - texlive-auxhook - texlive-hycolor - texlive-kvoptions - texlive-letltxmacro - texlive-pdftexcmds texlive-refcount texlive-rerunfilecheck - texlive-url)) + texlive-stringenc + texlive-url + texlive-zapfding)) (home-page "https://www.ctan.org/pkg/hyperref") (synopsis "Extensive support for hypertext in LaTeX") (description |