diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-23 11:21:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:38 +0200 |
commit | e12e90fa746dfa098c50da47713745ed09dc34a9 (patch) | |
tree | 323c2baa41c968b6b4f0a1fe03f5d28b2728be4b /gnu/packages/tex.scm | |
parent | 669355634d1221da5d1c3cf229ac5a47f220018b (diff) |
gnu: texlive-optex: Create missing symlink.
* gnu/packages/tex.scm (texlive-optex)[arguments]<#:phases>: Create missing
symlink.
Change-Id: I5b86e979ca3c6ce2aa8e6481596389dd83acb4ca
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2bd98ab337e..813a9ccad3e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -71830,7 +71830,17 @@ and back-ends. It also ensures compatibility with the @code{media9} and "0bcrj9wrimcd2pxrcfk7x3vkhxzij4422l19a8j4h299lkq3pbx0")))) (outputs '("out" "doc")) (build-system texlive-build-system) - (arguments (list #:create-formats #~(list "optex"))) + (arguments + (list #:create-formats #~(list "optex") + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'symlink-binaries + (lambda* (#:key inputs #:allow-other-keys) + (let ((luatex (search-input-file inputs "bin/luatex")) + (bin (string-append #$output "/bin"))) + (mkdir-p bin) + (with-directory-excursion bin + (symlink luatex "optex")))))))) (propagated-inputs (list texlive-amsfonts texlive-cm |