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: 26c8ce0bf8fe
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ba0849a1f24d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 28, 2019

  1. dovecot: 2.3.4.1 -> 2.3.5.1

    https://dovecot.org/list/dovecot-news/2019-March/000401.html
    fixes CVE-2019-7524
    
    (cherry picked from commit d3ca36b)
    
    Fixed a trivial merge conflict because some intermediate version bumps were
    missing.
    Robert Schütz authored and peti committed Mar 28, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    greg-1-anderson Greg Anderson
    Copy the full SHA
    ba0849a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/mail/dovecot/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/mail/dovecot/default.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
}:

stdenv.mkDerivation rec {
name = "dovecot-2.3.4.1";
name = "dovecot-2.3.5.1";

nativeBuildInputs = [ perl pkgconfig ];
buildInputs =
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {

src = fetchurl {
url = "https://dovecot.org/releases/2.3/${name}.tar.gz";
sha256 = "01xa8d08c0j51w5kmqb3vnzrvh17hkzx5a5p7fb5hgn3wln3x1xq";
sha256 = "0gy3qzwbp6zsyn44pcfq8iiv9iy9q7z6py30h60alb1vkr3rv3yp";
};

enableParallelBuilding = true;