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

Commits on Dec 4, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    29f01a8 View commit details
  2. Merge pull request #51395 from c0bw3b/sec/1809/postfix

    [18.09]  postfix: 3.3.1 -> 3.3.2
    c0bw3b authored Dec 4, 2018
    Copy the full SHA
    aae2117 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/servers/mail/postfix/default.nix
8 changes: 4 additions & 4 deletions pkgs/servers/mail/postfix/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl, libnsl
, coreutils, findutils, gnugrep, gawk, icu, pcre
, coreutils, findutils, gnugrep, gawk, icu, pcre, m4
, withPgSQL ? false, postgresql
, withMySQL ? false, mysql
, withSQLite ? false, sqlite
@@ -25,14 +25,14 @@ in stdenv.mkDerivation rec {

name = "postfix-${version}";

version = "3.3.1";
version = "3.3.2";

src = fetchurl {
url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz";
sha256 = "0fvymsklp32njsv0ngc1f45j01kcy61r5in99g5palibwkd19xal";
sha256 = "0nxkszdgs6fs86j6w1lf3vhxvjh1hw2jmrii5icqx9a9xqgg74rw";
};

nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper m4 ];
buildInputs = [ db openssl cyrus_sasl icu libnsl pcre ]
++ lib.optional withPgSQL postgresql
++ lib.optional withMySQL mysql.connector-c