mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
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:
parent
39fa1ef033
commit
738b0e4ccc
1 changed files with 1 additions and 1 deletions
|
@ -1786,7 +1786,7 @@ (define entry->texlive-input
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue