From 506c2ee455e4965f8d9e1c61bc89570fb1943c85 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Mon, 30 Apr 2012 12:47:30 +0000 Subject: [PATCH] Update offlineimap to 6.5.3. Patch by garbas. svn path=/nixpkgs/trunk/; revision=33948 --- pkgs/tools/networking/offlineimap/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix index 007c8f7c6e0..5a8f6b8caae 100644 --- a/pkgs/tools/networking/offlineimap/default.nix +++ b/pkgs/tools/networking/offlineimap/default.nix @@ -1,18 +1,20 @@ { fetchurl, buildPythonPackage }: -buildPythonPackage { - name = "offlineimap-6.2.0.2"; +buildPythonPackage rec { + version = "6.5.3"; + name = "offlineimap-${version}"; src = fetchurl { - url = "http://ftp.de.debian.org/debian/pool/main/o/offlineimap/offlineimap_6.2.0.2.orig.tar.gz"; - sha256 = "1w69qv1dm37m53k8cd068lk5z3qjlscnjxr397gs8kdsfds67v7c"; + url = "https://github.com/spaetz/offlineimap/tarball/v${version}"; + name = "${name}.tar.bz"; + sha256 = "8717a56e6244b47b908b23b598efb3470d74450ecd881b6d3573d8aec4a5db38"; }; doCheck = false; meta = { - description = "IMAP to local files bridge"; - homepage = "http://software.complete.org/software/projects/show/offlineimap"; + description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers."; + homepage = "http://offlineimap.org"; license = "GPLv2+"; }; }