nixpkgs/pkgs/servers/mail/postfix/default.nix
Armijn Hemel 8befb633d6 get postfix to build. Note: install still has to be done, but this will
probably be a bit tricky, due to sendmail "compatibility" (postfix makes
a symlink to "sendmail", so programs will keep on working).

svn path=/nixpkgs/trunk/; revision=5030
2006-03-10 23:48:34 +00:00

14 lines
351 B
Nix

{stdenv, fetchurl, db4, glibc}:
stdenv.mkDerivation {
name = "postfix-2.2.9";
src = fetchurl {
url = ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/postfix-2.2.9.tar.gz;
md5 = "be78631bd9b6bf7735e43abfa54d69f6";
};
buildinputs = [db4];
patches = [./postfix-2.2.9-db.patch ./postfix-2.2.9-lib.patch];
inherit glibc;
}