From 9b6d60f9610b35db1736472ebfae4533ba439ee3 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Tue, 4 Sep 2007 13:26:33 +0000 Subject: [PATCH] svn path=/nixpkgs/trunk/; revision=9250 --- pkgs/applications/misc/fetchmail/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pkgs/applications/misc/fetchmail/default.nix diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix new file mode 100644 index 000000000000..95fc61668fcb --- /dev/null +++ b/pkgs/applications/misc/fetchmail/default.nix @@ -0,0 +1,7 @@ +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"; + }; +}