jgart via Guix-patches via schreef op za 19-03-2022 om 03:47 [-0400]: > +         (modify-phases %standard-phases > +           (add-after 'unpack 'patch-figlet-executable > +             (lambda* (#:key inputs #:allow-other-keys) > +               (substitute* "printv.lisp" > +                 (("\"figlet") (string-append "\"" (which "figlet"))))))))) 'which' looks in 'native-inputs', not 'inputs', so when cross- compilation this is probably broken. I suggest (search-input-file inputs "bin/figlet") instead. Greetings, Maxime.