Maxim Cournoyer schreef op di 21-06-2022 om 01:20 [-0400]: > +                (wrap-program pts > +                  (list "PATH" 'prefix > +                        (list (string-append #$(this-package-input "bash") > +                                             "/bin") > +                              (string-append #$(this-package-input "coreutils") > +                                             "/bin") > +                              (string-append #$(this-package-input "gzip") > +                                             "/bin") > +                              (string-append #$(this-package-input "make") > +                                             "/bin") > +                              (string-append #$(this-package-input "php") > +                                             "/bin") > +                              (string-append #$(this-package-input "sed") > +                                             "/bin") > +                              (string-append #$(this-package-input "tar") > +                                             "/bin") > +                              (string-append #$(this-package-input "which") > +                                             "/bin")))))))))) Can be simplified and delabelified (untested): (list "PATH" 'prefix (map (lambda (binary) (search-input-file inputs (string-append "bin/" binary))) '("bash" "tar" "which" "cat" "gzip" [...]))) (Only looked at the phases) Greetings, Maxime.