aboutsummaryrefslogtreecommitdiff
path: root/guix/profiles.scm
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-24 16:03:18 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-24 16:03:18 +0200
commit738b0e4ccc2bac3d77bb29dd6d51026d887d6b16 (patch)
treec3fe6d5728e72d939000b31761830a8e33a957a3 /guix/profiles.scm
parent39fa1ef033fda82cb1d122e0d1675b51acb1db34 (diff)
downloadguix-738b0e4ccc2bac3d77bb29dd6d51026d887d6b16.tar
guix-738b0e4ccc2bac3d77bb29dd6d51026d887d6b16.tar.gz
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>
Diffstat (limited to 'guix/profiles.scm')
-rw-r--r--guix/profiles.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm
index 2bd6477cf8..fea766879d 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -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)