SeerLite via Guix-patches via schreef op wo 02-03-2022 om 10:17 [- 0300]: > +          (add-before 'install 'fix-installman.sh > +            (lambda* (#:key inputs #:allow-other-keys) > +              (substitute* "src/installman.sh" > +                (("/bin/sh") > +                 (search-input-file inputs "bin/sh"))))) Is "installman.sh" used during the build, or when vim is run? In the former case, this should look into (or native-inputs inputs) instead for cross-compilation reasons, and could be simplified to: (("/bin/sh") (which "sh")) Greetings, Maxime.