summary refs log tree commit diff
path: root/pkgs/applications/misc/fetchmail/default.nix
blob: f80ea6ef453e03b9cf7900ce2a51be1319b8c226 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";
  };

  buildInputs = [ openssl ];

  configureFlags = "--with-ssl=${openssl}";

  patches = [ ./security-fix.patch ];

  meta = {
    homepage = http://www.fetchmail.info;
  };
}