Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #88436 from mweinelt/19.09/dovecot
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Jun 12, 2020
2 parents 716f393 + 0d49c4a commit 8260cd5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/servers/mail/dovecot/default.nix
Expand Up @@ -9,7 +9,8 @@
}:

stdenv.mkDerivation rec {
name = "dovecot-2.3.9.3";
pname = "dovecot";
version = "2.3.10.1";

nativeBuildInputs = [ perl pkgconfig ];
buildInputs =
Expand All @@ -20,8 +21,8 @@ stdenv.mkDerivation rec {
++ lib.optional withSQLite sqlite;

src = fetchurl {
url = "https://dovecot.org/releases/2.3/${name}.tar.gz";
sha256 = "0lcnqib63nv32xr3nr4s3x8k77mbgrhc13swjl2xqnzw4fabd7zq";
url = "https://dovecot.org/releases/2.3/${pname}-${version}.tar.gz";
sha256 = "035idr2j81s5mngnhd58rih79dhwwak7q01mqbx3rcmi4cpychk6";
};

enableParallelBuilding = true;
Expand Down Expand Up @@ -81,7 +82,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;
Expand Down

0 comments on commit 8260cd5

Please sign in to comment.