2018-09-29 05:46:44 +02:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db, zlib, cyrus_sasl, perl }:
|
2011-02-08 00:07:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-10-18 02:33:33 +02:00
|
|
|
name = "isync-1.3.0";
|
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";
|
2017-10-18 02:33:33 +02:00
|
|
|
sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
|
2011-02-08 00:07:21 +01:00
|
|
|
};
|
|
|
|
|
2017-10-18 02:33:33 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
2018-09-29 05:46:44 +02:00
|
|
|
buildInputs = [ openssl db cyrus_sasl zlib ];
|
2011-02-08 00:07:21 +01:00
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-08 00:07:21 +01:00
|
|
|
homepage = http://isync.sourceforge.net/;
|
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2011-02-08 00:07:21 +01:00
|
|
|
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
2015-05-27 21:56:04 +02:00
|
|
|
platforms = platforms.unix;
|
2011-02-08 00:07:21 +01:00
|
|
|
};
|
|
|
|
}
|