nixpkgs/pkgs/applications/misc/fetchmail/default.nix
Yury G. Kudryashov 3c14fa98a4 fetchmail: more features, more dependencies
svn path=/nixpkgs/branches/stdenv-updates/; revision=10438
2008-01-31 17:32:13 +00:00

19 lines
460 B
Nix

args: with args;
stdenv.mkDerivation {
name="fetchmail-6.3.8";
src = fetchurl {
url = http://download.berlios.de/fetchmail/fetchmail-6.3.8.tar.bz2;
sha256 = "5612f9af367f641e0efd084f44fcf1889669e711dbd8c60f6b7953e494d1b09b";
};
patches = [ ./security-fix.patch ];
configureFlags = "--enable-fallback=procmail --with-ssl=${openssl}";
buildInputs = [ openssl python procmail ];
meta = {
homepage = http://www.fetchmail.info;
};
}