diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 16:03:18 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 16:03:18 +0200 |
commit | 738b0e4ccc2bac3d77bb29dd6d51026d887d6b16 (patch) | |
tree | c3fe6d5728e72d939000b31761830a8e33a957a3 | |
parent | 39fa1ef033fda82cb1d122e0d1675b51acb1db34 (diff) |
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>
-rw-r--r-- | guix/profiles.scm | 2 |
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) |