Remco van 't Veer schreef op za 28-05-2022 om 10:57 [+0200]: > [...] > +         (add-after 'install 'wrap-gi-typelib ; GObject Introspection > +           (lambda* (#:key outputs #:allow-other-keys) > +             (let ((out (assoc-ref outputs "out")) > +                   (gi-typelib-path (getenv "GI_TYPELIB_PATH"))) > +               (for-each (lambda (prog) > +                           (wrap-program (string-append out "/bin/" prog) > +                             `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))) > +                         '("exfalso" "quodlibet"))) > [...] > + > +    (native-inputs [...]) > +    (inputs [...]) bash-minimal (which is required when wrap-program is used for cross- compilation reasons) is missing from inputs. For future reference, this issue would be detected by "guix lint". There were some other suboptimalities too (trailing #t, unconditional #:tests? #true), but they have been corrected by Liliana in Greetings, Maxime.