about summary refs log tree commit diff
path: root/pkgs/servers/mail
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-05-27 15:37:04 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-05-27 15:58:40 +0200
commite4832c754114c5660909546ac749475bf63ff06e (patch)
treefe77400566603caa218453ad5c7b6b9b5ea9715c /pkgs/servers/mail
parent60a890e35bc94ace092a2ec278534979fe6ee361 (diff)
parentdc13593b9fad3ea3728e2fd32f90841d5ec7662d (diff)
downloadnixlib-e4832c754114c5660909546ac749475bf63ff06e.tar
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.gz
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.bz2
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.lz
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.xz
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.zst
nixlib-e4832c754114c5660909546ac749475bf63ff06e.zip
Merge branch 'staging'
Includes a security update of libxml2.
Diffstat (limited to 'pkgs/servers/mail')
-rw-r--r--pkgs/servers/mail/opensmtpd/extras.nix2
-rw-r--r--pkgs/servers/mail/postfix/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/mail/opensmtpd/extras.nix b/pkgs/servers/mail/opensmtpd/extras.nix
index 0123d19bf3fa..cf93b11ba9aa 100644
--- a/pkgs/servers/mail/opensmtpd/extras.nix
+++ b/pkgs/servers/mail/opensmtpd/extras.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     "--sysconfdir=/etc"
     "--localstatedir=/var"
     "--with-privsep-user=smtpd"
-    "--with-libevent-dir=${libevent}"
+    "--with-libevent-dir=${libevent.dev}"
 
     "--with-filter-clamav"
     "--with-filter-dkim-signer"
diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix
index 75685d7605e2..d75e2e059353 100644
--- a/pkgs/servers/mail/postfix/default.nix
+++ b/pkgs/servers/mail/postfix/default.nix
@@ -7,7 +7,7 @@
 
 let
   ccargs = lib.concatStringsSep " " ([
-    "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl"
+    "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl.dev}/include/sasl"
     "-DHAS_DB_BYPASS_MAKEDEFS_CHECK"
     "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2"
    ] ++ lib.optional withPgSQL "-DHAS_PGSQL"