8befb633d6
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
14 lines
351 B
Nix
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;
|
|
}
|