diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-23 11:23:26 +0200 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-06-27 10:13:05 +0100 |
commit | 65b676b0e8670c9e917bf4420c648b395effff38 (patch) | |
tree | e9ccb0e652abf6c47e3741e7f81a9689ab99391f | |
parent | c7b3a4a38706a3c591d00bb6dcfcb52671254453 (diff) |
gnu: texlive-platex: Create missing symlink.
* gnu/packages/tex.scm (texlive-platex)[arguments]<#:phases>: Create missing
symlink.
Change-Id: I7924933a858526b2ffa1177ba29f916da99e3335
-rw-r--r-- | gnu/packages/tex.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 813a9ccad3..649ea56481 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -44970,7 +44970,14 @@ LaTeX packages use of @samp{@@@@}) in nested package files.") (lambda _ (substitute* "source/platex/base/plfmt.ins" (("\\\\keepsilent\n" all) - (string-append all "\\askforoverwritefalse\n")))))))) + (string-append all "\\askforoverwritefalse\n"))))) + (add-after 'install 'symlink-binaries + (lambda* (#:key inputs #:allow-other-keys) + (let ((euptex (search-input-file inputs "bin/euptex")) + (bin (string-append #$output "/bin"))) + (mkdir-p bin) + (with-directory-excursion bin + (symlink euptex "platex")))))))) (propagated-inputs (list texlive-atbegshi texlive-atveryend |