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: a62aeb9b5f48
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 00a51b4012ba
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 24, 2018

  1. dovecot: 2.3.3 -> 2.3.4, dovecot_pigeonhole: 0.5.3 -> 0.5.4

    Robert Schütz committed Nov 24, 2018
    Copy the full SHA
    b6c96c6 View commit details

Commits on Nov 26, 2018

  1. Merge pull request #50986 from dotlambda/dovecot-2.3.4

    dovecot: 2.3.3 -> 2.3.4, dovecot_pigeonhole: 0.5.3 -> 0.5.4
    flokli authored Nov 26, 2018
    Copy the full SHA
    00a51b4 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/servers/mail/dovecot/default.nix
  2. +2 −2 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
@@ -9,7 +9,7 @@
}:

stdenv.mkDerivation rec {
name = "dovecot-2.3.3";
name = "dovecot-2.3.4";

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

src = fetchurl {
url = "https://dovecot.org/releases/2.3/${name}.tar.gz";
sha256 = "13kd0rxdg9scwnx6n24p6mv8p6dyh7v8s7sqv55gp2i54pp2gbqm";
sha256 = "01ggzf7b3jpl89mjiqr7xbpbs181g2gjf6wzg70qaqfzz3ppc6yr";
};

preConfigure = ''
4 changes: 2 additions & 2 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 {
name = "dovecot-pigeonhole-${version}";
version = "0.5.3";
version = "0.5.4";

src = fetchurl {
url = "https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${version}.tar.gz";
sha256 = "08i6vw6k2v906s4sc6wl9ffpz6blzdga6vglqpqjm7jzq10jfbz0";
sha256 = "05l5y0gc8ycswdbl58j7kbx5gq1z7mjkazjccmgbq6h0gbk9jyal";
};

buildInputs = [ dovecot openssl ];