Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 942ce73038dd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f45ccd9d20b4
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on May 18, 2020

  1. dovecot: 2.3.9.3 -> 2.3.10

    (cherry picked from commit 8d08f45)
    r-ryantm authored and mweinelt committed May 18, 2020
    Copy the full SHA
    9e78133 View commit details
  2. dovecot: v2.3.10 → v2.3.10.1

    Fixes: CVE-2020-10957, CVE-2020-10958, CVE-2020-10967
    (cherry picked from commit 6cf4885)
    mweinelt committed May 18, 2020
    Copy the full SHA
    9293520 View commit details

Commits on May 20, 2020

  1. Merge pull request #88081 from mweinelt/20.03/dovecot

    [20.03] dovecot: v2.3.9.3 → v2.3.10.1
    andir authored May 20, 2020
    Copy the full SHA
    f45ccd9 View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/servers/mail/dovecot/default.nix
9 changes: 5 additions & 4 deletions pkgs/servers/mail/dovecot/default.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,8 @@
}:

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

nativeBuildInputs = [ perl pkgconfig ];
buildInputs =
@@ -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;
@@ -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;