2011-02-08 00:07:21 +01:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db4 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-02 18:15:54 +02:00
|
|
|
name = "isync-1.0.6";
|
2011-02-08 00:07:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-02 18:15:54 +02:00
|
|
|
url = "mirror://sourceforge/isync/${name}.tar.gz";
|
|
|
|
sha256 = "0bv3hw6mc9xi55q6lpyz1w3dyrk6rlxa8ny2x1b44mrnbrx7chz5";
|
2011-02-08 00:07:21 +01:00
|
|
|
};
|
|
|
|
|
2011-08-09 22:09:17 +02:00
|
|
|
patches = [ ./isync-recursice-imap.patch ]; # usefull patch to enable subfolders listing
|
2011-02-08 00:07:21 +01:00
|
|
|
buildInputs = [ openssl pkgconfig db4 ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://isync.sourceforge.net/;
|
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
|
|
|
licenses = [ "GPLv2+" ];
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|