h2o: add OpenSSL to $PATH

This commit is contained in:
โทสฺตัล
2025-02-18 17:06:15 +07:00
parent 2c1a09f1fe
commit 2bcb69609a
+2 -1
View File
@@ -66,7 +66,8 @@ stdenv.mkDerivation (finalAttrs: {
EXES="$(find "$out/share/h2o" -type f -executable)"
for exe in $EXES; do
wrapProgram "$exe" \
--set "H2O_PERL" "${lib.getExe perl}"
--set "H2O_PERL" "${lib.getExe perl}" \
--prefix "PATH" : "${lib.getBin openssl}/bin"
done
'';