Merge pull request #95898 from xfix/php-sendmail

php: use system-sendmail
This commit is contained in:
Maximilian Bosch 2020-08-21 21:51:19 +02:00 committed by GitHub
commit 18f6323fab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ let
{ callPackage, lib, stdenv, nixosTests, config, fetchurl, makeWrapper
, symlinkJoin, writeText, autoconf, automake, bison, flex, libtool
, pkgconfig, re2c, apacheHttpd, libargon2, libxml2, pcre, pcre2
, systemd, valgrind, xcbuild
, systemd, system-sendmail, valgrind, xcbuild
, version
, sha256
@ -195,6 +195,10 @@ let
++ lib.optional systemdSupport "--with-fpm-systemd"
++ lib.optional valgrindSupport "--with-valgrind=${valgrind.dev}"
++ lib.optional ztsSupport "--enable-maintainer-zts"
# Sendmail
++ [ "PROG_SENDMAIL=${system-sendmail}/bin/sendmail" ]
;
hardeningDisable = [ "bindnow" ];