guix: profiles: Detect TeX Live packages propagated from non-TeX Live inputs.

This fixes <https://issues.guix.gnu.org/65474>.

* guix/profiles.scm (texlive-font-maps): Also check for TeX Live dependencies
in non "texlive-" prefixed packages.

For example, PYTHON-NBCONVERT propagates TeX Live inputs.  Those need to be
found out when building ".map"" files.

Co-authored-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Nicolas Goaziou 2023-08-24 16:03:18 +02:00
parent 39fa1ef033
commit 738b0e4ccc
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 1 additions and 1 deletions

View File

@ -1786,7 +1786,7 @@ MANIFEST."
(if (string-prefix? "texlive-" name)
(cons (gexp-input thing output)
(append-map entry->texlive-input deps))
'()))))
(append-map entry->texlive-input deps)))))
(define texlive-scripts-entry?
(match-lambda
(($ <manifest-entry> name version output thing deps)