summary refs log tree commit diff
path: root/pkgs/servers/mail/dovecot
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-08 07:02:20 +0000
committerAlyssa Ross <hi@alyssa.is>2020-03-12 00:00:26 +0000
commit8d08f4536828387c6a2ba03cb4a0c23637e83774 (patch)
tree647bd62f6fa28ce4ca1e4e551f967cee2d2913f3 /pkgs/servers/mail/dovecot
parentbaaec648c8e6a7db8baedc6b506733df5bcf4cdf (diff)
downloadnixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.tar
nixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.tar.gz
nixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.tar.bz2
nixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.tar.lz
nixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.tar.xz
nixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.tar.zst
nixpkgs-8d08f4536828387c6a2ba03cb4a0c23637e83774.zip
dovecot: 2.3.9.3 -> 2.3.10
Diffstat (limited to 'pkgs/servers/mail/dovecot')
-rw-r--r--pkgs/servers/mail/dovecot/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix
index 12da51f9f23..fd27d18b503 100644
--- a/pkgs/servers/mail/dovecot/default.nix
+++ b/pkgs/servers/mail/dovecot/default.nix
@@ -9,7 +9,7 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "dovecot-2.3.9.3";
+  name = "dovecot-2.3.10";
 
   nativeBuildInputs = [ perl pkgconfig ];
   buildInputs =
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://dovecot.org/releases/2.3/${name}.tar.gz";
-    sha256 = "0lcnqib63nv32xr3nr4s3x8k77mbgrhc13swjl2xqnzw4fabd7zq";
+    sha256 = "1ibiz3k2flablkcqbkvfzsjnq5b5kxximhcrplflsjl57mr88ca7";
   };
 
   enableParallelBuilding = true;
@@ -81,7 +81,7 @@ stdenv.mkDerivation rec {
     ++ lib.optional withSQLite "--with-sqlite";
 
   meta = {
-    homepage = https://dovecot.org/;
+    homepage = "https://dovecot.org/";
     description = "Open source IMAP and POP3 email server written with security primarily in mind";
     maintainers = with stdenv.lib.maintainers; [ peti rickynils fpletz globin ];
     platforms = stdenv.lib.platforms.unix;