Ludovic Courtès schreef op wo 15-06-2022 om 22:29 [+0200]: > +  (computed-file name > +                 (with-imported-modules '((guix build utils)) > +                   #~(begin > +                       (use-modules (guix build utils)) > + > +                       ;; Support non-ASCII file names. > +                       (setenv "GUIX_LOCPATH" > +                               #+(file-append glibc-utf8-locales > +                                              "/lib/locale")) > +                       (setlocale LC_ALL "en_US.utf8") For robustness, I think it would be best to move this locale initialisation code to the implementation of 'computed-file' itself, to eliminate this potential pitfall entirely. Except for 'racket' and package transformations, this does not seem to used by any package definition (except via meson when cross-compiling), so it doesn't seem like this would entail a world-rebuild (unverified!). Greetings, Maxime.