Merge pull request #179350 from alyssais/neomutt-sendmail

neomutt: fix sendmail default value
This commit is contained in:
Maximilian Bosch 2022-07-04 18:54:22 +02:00 committed by GitHub
commit 18d8e42f5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
postPatch = '' postPatch = ''
substituteInPlace auto.def --replace /usr/sbin/sendmail sendmail
substituteInPlace contrib/smime_keys \ substituteInPlace contrib/smime_keys \
--replace /usr/bin/openssl ${openssl}/bin/openssl --replace /usr/bin/openssl ${openssl}/bin/openssl
@ -60,8 +61,6 @@ stdenv.mkDerivation rec {
# To make it not reference .dev outputs. See: # To make it not reference .dev outputs. See:
# https://github.com/neomutt/neomutt/pull/2367 # https://github.com/neomutt/neomutt/pull/2367
"--disable-include-path-in-cflags" "--disable-include-path-in-cflags"
# Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail
"ac_cv_path_SENDMAIL=sendmail"
"--zlib" "--zlib"
]; ];