zimoun schreef op di 14-09-2021 om 18:10 [+0200]: > @@ -708,6 +710,11 @@ auto-completion and syntax highlighting.") > ("openssl" ,openssl) > ("rpcsvc-proto" ,rpcsvc-proto) ; rpcgen > ("zlib" ,zlib))) > + (propagated-inputs > + ;; Required by 'mysql_config' > + `(("awk" ,gawk) > + ("coreutils" ,coreutils) ;ls,cat > + ("sed" ,sed))) If 'wrap-program' is used on mysql_config to set PATH to the bin directories of awk, coreutils and sed, or 'substitute*' is used to replace 'awk', 'sed' and 'ls' by their absolute paths, then propagation can be avoided. Greetings, Maxime.