From 65b8af2a7f3f6dcc050af17d0993ba256bece346 Mon Sep 17 00:00:00 2001 From: ajs124 Date: Mon, 27 Jun 2022 13:49:29 +0200 Subject: [PATCH] exim: 4.95 -> 4.96 https://lists.exim.org/lurker/message/20220625.141825.d6de6074.en.html --- pkgs/servers/mail/exim/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix index c69e699a3a7..30b8309d6bc 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