Efraim Flashner schreef op di 24-05-2022 om 10:59 [+0300]: > +           (add-after 'install-more 'wrap-programs > +             (lambda* (#:key native-inputs inputs outputs #:allow-other-keys) > +               (for-each > +                 (lambda (file) > +                   (wrap-script file > +                    `("PATH" ":" prefix > +                      (,(dirname (search-input-file (or native-inputs inputs) "/bin/cut")) > +                       ,(dirname (search-input-file (or native-inputs inputs) "/bin/dpkg")) > +                       ,(dirname (search-input-file (or native-inputs inputs) "/bin/grep")) > +                       ,(dirname (search-input-file (or native-inputs inputs) "/bin/perl")) > +                       ,(dirname (search-input-file (or native-inputs inputs) "/bin/sed")) > +                       ,(dirname (search-input-file (or native-inputs inputs) "/bin/which")) > +                       ,(dirname (search-input-file (or native-inputs inputs) "/sbin/debootstrap")))))) Shouldn't these be inputs instead of native-inputs, because they will end up being run when pbuilder is run? Likewise for'patch-source'. Also, can be simplified to [...] "PATH" ":" prefix ,(map (compose dirname (cut search-input-file inputs <>)) '("/bin/cut" "/bin/dpkg" ...)) [...]