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

Commits on Oct 11, 2019

  1. Copy the full SHA
    1bd0d91 View commit details
  2. Copy the full SHA
    3641789 View commit details
  3. [19.09] dovecot: 2.3.7.2 -> 2.3.8 (#70968)

    [19.09] dovecot: 2.3.7.2 -> 2.3.8
    flokli authored Oct 11, 2019
    Copy the full SHA
    1652591 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.7.2";
name = "dovecot-2.3.8";

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

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

enableParallelBuilding = true;
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 {
pname = "dovecot-pigeonhole";
version = "0.5.7.2";
version = "0.5.8";

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

buildInputs = [ dovecot openssl ];