guix_mirror_bot pushed a commit to branch tex-team
in repository guix.

commit b78c1f1fb9f19adb56458a23c0e90d743b2b6c5f
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Tue Jun 30 22:01:48 2026 +0200

    gnu: texlive-local-tree: Populate ls-R also with foreign packages.
    
    * gnu/packages/tex.scm (texlive-local-tree): Populate ls-R file with all
    packages, including non TeX Live packages.
---
 gnu/packages/tex.scm | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 3973dc064c..415a2eb101 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -1330,16 +1330,9 @@ documentation in the TeX format."
                 (lambda* (#:key inputs #:allow-other-keys)
                   ;; Build complete TeX Live tree in #$output, barring the
                   ;; files going to be regenerated.
-                  (let ((texlive-outputs
-                         (filter-map
-                          (match-lambda
-                            (`(,label . ,dir)
-                             (and (string-prefix? "texlive-" label)
-                                  dir)))
-                          inputs)))
-                    (union-build #$output texlive-outputs
-                                 #:create-all-directories? #t
-                                 #:log-port (%make-void-port "w")))
+                  (union-build #$output inputs
+                               #:create-all-directories? #t
+                               #:log-port (%make-void-port "w"))
                   ;; Remove files that are going to be regenerated.
                   (with-directory-excursion
                       (string-append #$output "/share/texmf-dist")

Reply via email to