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: 5225d4bf0193
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: 109a28ab954a
Choose a head ref
  • 5 commits
  • 2 files changed
  • 3 contributors

Commits on Feb 11, 2019

  1. dovecot: 2.3.2.1 -> 2.3.3 (#47814)

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/dovecot/versions
    
    (cherry picked from commit 5a6c4d3)
    r-ryantm authored and Robert Schütz committed Feb 11, 2019
    Copy the full SHA
    f594245 View commit details
  2. dovecot_pigeonhole: 0.5.2 -> 0.5.3 (#47820)

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/dovecot-pigeonhole/versions
    
    (cherry picked from commit e00bfcd)
    r-ryantm authored and Robert Schütz committed Feb 11, 2019
    Copy the full SHA
    3b276cf View commit details
  3. dovecot: 2.3.3 -> 2.3.4, dovecot_pigeonhole: 0.5.3 -> 0.5.4

    (cherry picked from commit b6c96c6)
    Robert Schütz committed Feb 11, 2019
    Copy the full SHA
    72e1819 View commit details
  4. dovecot: 2.3.4 -> 2.3.4.1

    Robert Schütz committed Feb 11, 2019
    Copy the full SHA
    9e431ce View commit details
  5. Copy the full SHA
    109a28a 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
@@ -8,7 +8,7 @@
}:

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

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

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

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.2";
version = "0.5.4";

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

buildInputs = [ dovecot openssl ];