Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f184fe352bcf
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cbaaba7a2025
Choose a head ref
  • 4 commits
  • 2 files changed
  • 3 contributors

Commits on Aug 17, 2020

  1. dovecot_pigeonhole: 0.5.9 -> 0.5.10

    (cherry picked from commit da5e9d4)
    r-ryantm authored and dotlambda committed Aug 17, 2020
    Copy the full SHA
    fcbe539 View commit details
  2. dovecot: 2.3.10.1 -> 2.3.11.3

    (cherry picked from commit 4f5b797)
    dotlambda committed Aug 17, 2020
    Copy the full SHA
    c679e26 View commit details
  3. dovecot_pigeonhole: 0.5.10 -> 0.5.11

    (cherry picked from commit c62812c)
    dotlambda committed Aug 17, 2020
    Copy the full SHA
    d24914f View commit details
  4. Merge pull request #95676 from dotlambda/dovecot-2.3.11.3

    dovecot: 2.3.10.1 -> 2.3.11.3
    mweinelt authored Aug 17, 2020
    Copy the full SHA
    cbaaba7 View commit details
Showing with 5 additions and 5 deletions.
  1. +2 −2 pkgs/servers/mail/dovecot/default.nix
  2. +3 −3 pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/mail/dovecot/default.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

stdenv.mkDerivation rec {
pname = "dovecot";
version = "2.3.10.1";
version = "2.3.11.3";

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

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

enableParallelBuilding = true;
6 changes: 3 additions & 3 deletions pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "dovecot-pigeonhole";
version = "0.5.9";
version = "0.5.11";

src = fetchurl {
url = "https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${version}.tar.gz";
sha256 = "01dxidrnmrr2gqggfsgkfxa6ynvyjyw13xw32gi86yqmwnm6inin";
sha256 = "1w5mryv6izh1gv7davnl94rb0pvh5bxl2bydzbfla1b83x22m5qb";
};

buildInputs = [ dovecot openssl ];
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;

meta = with stdenv.lib; {
homepage = http://pigeonhole.dovecot.org/;
homepage = "http://pigeonhole.dovecot.org/";
description = "A sieve plugin for the Dovecot IMAP server";
license = licenses.lgpl21;
maintainers = with maintainers; [ rickynils globin ];