nixpkgs/pkgs/tools/networking/offlineimap/default.nix
Lluís Batlle i Rossell 257f7bbb9a Updating the src url of offlineimap (to the only version there available)
svn path=/nixpkgs/trunk/; revision=23975
2010-09-27 21:01:16 +00:00

22 lines
523 B
Nix

{fetchurl, buildPythonPackage}:
buildPythonPackage {
name = "offlineimap-6.2.0.2";
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/o/offlineimap/offlineimap_6.2.0.2.orig.tar.gz";
sha256 = "1w69qv1dm37m53k8cd068lk5z3qjlscnjxr397gs8kdsfds67v7c";
};
doCheck = false;
preConfigure = "set -x";
buildInputs = [ ];
meta = {
description = "IMAP to local files bridge";
homepage = "http://software.complete.org/software/projects/show/offlineimap";
license = "GPLv2+";
};
}