diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-26 10:18:47 +0200 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-06-27 10:14:46 +0100 |
commit | 62879c404b0713e55903eb7d3ec91dde8a26599f (patch) | |
tree | 7c2b01d683ea0c3b20f8e4cba3b80f4e96935554 | |
parent | c7b2e009c00dca6e30cb0cb9a457feac40f4cbaa (diff) |
gnu: texlive-extract: Skip build.
* gnu/packages/tex.scm (texlive-extract)[arguments]<#:phases>: Remove BUILD
phase.
[native-inputs]: Add TEXLIVE-ETOOLBOX.
Change-Id: Iaf1fb8368a85619aa00c0241f6098c9bef4a8fea
-rw-r--r-- | gnu/packages/tex.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6d8cd5c7b2..bc9c3a4104 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -102437,10 +102437,17 @@ LaTeX, to generate a nice solution book.") (outputs '("out" "doc")) (properties '((updater-extra-native-inputs "texlive-updmap.cfg"))) (build-system texlive-build-system) - (arguments (list #:tex-format "latex")) + (arguments + (list #:tex-format "latex" + #:phases + #~(modify-phases %standard-phases + ;; FIXME: Build fails with "LaTeX socket Error: Sockets can + ;; only be declared at top-level!". Skip build. + (delete 'build)))) (native-inputs (list (texlive-updmap.cfg - (list texlive-float + (list texlive-etoolbox + texlive-float texlive-fourier texlive-hypdoc texlive-listings |