summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-06-27 13:49:29 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-08-06 21:49:14 +0000
commit2624205929bd90671e29366ddaa4a38311767f6d (patch)
tree4df28cb66c9f3f36a6d2bb0625ae65fa0d205ea7
parentphp81: 8.1.8 -> 8.1.9 (diff)
downloadnixpkgs-origin/backport-179328-to-release-22.05.tar.gz
https://lists.exim.org/lurker/message/20220625.141825.d6de6074.en.html (cherry picked from commit 65b8af2a7f3f6dcc050af17d0993ba256bece346)
-rw-r--r--pkgs/servers/mail/exim/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix
index c69e699a3a76..30b8309d6bc3 100644
--- a/pkgs/servers/mail/exim/default.nix
+++ b/pkgs/servers/mail/exim/default.nix
@@ -1,4 +1,4 @@
-{ coreutils, db, fetchurl, openssl, pcre, perl, pkg-config, lib, stdenv
+{ coreutils, db, fetchurl, openssl, pcre2, perl, pkg-config, lib, stdenv
, enableLDAP ? false, openldap
, enableMySQL ? false, libmysqlclient, zlib
, enableAuthDovecot ? false, dovecot
@@ -10,15 +10,15 @@
stdenv.mkDerivation rec {
pname = "exim";
- version = "4.95";
+ version = "4.96";
src = fetchurl {
url = "https://ftp.exim.org/pub/exim/exim4/${pname}-${version}.tar.xz";
- sha256 = "0rzi0kc3qiiaw8vnv5qrpwdvvh4sr5chns026xy99spjzx9vd76c";
+ hash = "sha256-KZpWknsus0d9qv08W9oCvGflxOWJinrq8nQIdSeM8aM=";
};
nativeBuildInputs = [ pkg-config ];
- buildInputs = [ coreutils db openssl perl pcre ]
+ buildInputs = [ coreutils db openssl perl pcre2 ]
++ lib.optional enableLDAP openldap
++ lib.optionals enableMySQL [ libmysqlclient zlib ]
++ lib.optional enableAuthDovecot dovecot