Skip to content

Commit

Permalink
Merge pull request #51395 from c0bw3b/sec/1809/postfix
Browse files Browse the repository at this point in the history
[18.09]  postfix: 3.3.1 -> 3.3.2
  • Loading branch information
c0bw3b committed Dec 4, 2018
2 parents 8992f52 + 29f01a8 commit aae2117
Showing 1 changed file with 4 additions and 4 deletions.
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
Expand All @@ -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
Expand Down

0 comments on commit aae2117

Please sign in to comment.