summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/mail/exim
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2020-07-17 19:20:32 +0200
committerajs124 <git@ajs124.de>2020-07-19 17:30:12 +0200
commit0a998fcdfccb0f17136bf84c6acda98f3ff34dff (patch)
tree34eba0ee987b720ee9b0d9f4d07c1585dbd45a57 /pkgs/servers/mail/exim
parentb6eca9a2afa143bcbee3b4ae1bdc13993bc71784 (diff)
exim: 4.93 -> 4.94
Diffstat (limited to 'pkgs/servers/mail/exim')
-rw-r--r--pkgs/servers/mail/exim/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix
index a85cb92a3fb1..4d63a7b39c70 100644
--- a/pkgs/servers/mail/exim/default.nix
+++ b/pkgs/servers/mail/exim/default.nix
@@ -8,11 +8,11 @@
stdenv.mkDerivation rec {
pname = "exim";
- version = "4.93.0.4";
+ version = "4.94";
src = fetchurl {
- url = "https://ftp.exim.org/pub/exim/exim4/fixes/${pname}-${version}.tar.xz";
- sha256 = "01g4sfycv13glnmfrapwhjbdw6z1z7w5bwjldxjmglwfw5p3czak";
+ url = "https://ftp.exim.org/pub/exim/exim4/${pname}-${version}.tar.xz";
+ sha256 = "1nsb2i5mqxfz1sl1bmbxmpb2qiaf3wffhfiw4j9vfpagy3xfhzpp";
};
nativeBuildInputs = [ pkgconfig ];
@@ -92,11 +92,11 @@ stdenv.mkDerivation rec {
done )
'';
- meta = {
+ meta = with stdenv.lib; {
homepage = "http://exim.org/";
description = "A mail transfer agent (MTA)";
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.tv ];
+ license = with licenses; [ gpl2Plus bsd3 ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ tv ajs124 das_j ];
};
}