2017-10-18 00:33:33 +00:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl, perl }:
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-10-18 00:33:33 +00:00
|
|
|
name = "isync-1.3.0";
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-02 16:15:54 +00:00
|
|
|
url = "mirror://sourceforge/isync/${name}.tar.gz";
|
2017-10-18 00:33:33 +00:00
|
|
|
sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
|
2017-10-18 00:33:33 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ openssl db cyrus_sasl ];
|
2011-02-07 23:07:21 +00:00
|
|
|
|
2015-05-27 19:56:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-07 23:07:21 +00:00
|
|
|
homepage = http://isync.sourceforge.net/;
|
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2011-02-07 23:07:21 +00:00
|
|
|
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
2015-05-27 19:56:04 +00:00
|
|
|
platforms = platforms.unix;
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
}
|