Author: simons
Date: Mon Jul 18 14:06:35 2011
New Revision: 27822
URL: https://svn.nixos.org/websvn/nix/?rev=27822&sc=1

Log:
fetchmail: updated to version 6.3.20

Modified:
   nixpkgs/trunk/pkgs/applications/misc/fetchmail/default.nix

Modified: nixpkgs/trunk/pkgs/applications/misc/fetchmail/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/applications/misc/fetchmail/default.nix  Mon Jul 18 
13:45:47 2011        (r27821)
+++ nixpkgs/trunk/pkgs/applications/misc/fetchmail/default.nix  Mon Jul 18 
14:06:35 2011        (r27822)
@@ -1,18 +1,33 @@
-args: with args;
+{ stdenv, fetchurl, openssl }:
+
+let
+  version = "6.3.20";
+in
 stdenv.mkDerivation {
-  name="fetchmail-6.3.8";
+  name="fetchmail-${version}";
+
   src = fetchurl {
-    url = http://download.berlios.de/fetchmail/fetchmail-6.3.8.tar.bz2;
-    sha256 = 
"5612f9af367f641e0efd084f44fcf1889669e711dbd8c60f6b7953e494d1b09b";
+    url = "http://download.berlios.de/fetchmail/fetchmail-${version}.tar.bz2";;
+    sha256 = 
"22e94f11d885cb9330a197fd80217d44f65e6b087e4d4b4d83e573adfc24aa7b";
   };
 
   buildInputs = [ openssl ];
 
   configureFlags = "--with-ssl=${openssl}";
 
-  patches = [ ./security-fix.patch ];
-
   meta = {
-    homepage = http://www.fetchmail.info;
+    homepage = "http://www.fetchmail.info/";;
+    description = "a full-featured remote-mail retrieval and forwarding 
utility";
+    longDescription = ''
+      A full-featured, robust, well-documented remote-mail retrieval and
+      forwarding utility intended to be used over on-demand TCP/IP links
+      (such as SLIP or PPP connections). It supports every remote-mail
+      protocol now in use on the Internet: POP2, POP3, RPOP, APOP, KPOP,
+      all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and
+      IPSEC.
+    '';
+
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.simons ];
   };
 }
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to