2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, perl
|
2020-05-10 11:48:12 +01:00
|
|
|
, openssl, db, zlib, cyrus_sasl
|
|
|
|
}:
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-10 11:48:12 +01:00
|
|
|
pname = "isync";
|
2020-08-05 10:32:01 +01:00
|
|
|
version = "1.3.3";
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-10 11:48:12 +01:00
|
|
|
url = "mirror://sourceforge/isync/${pname}-${version}.tar.gz";
|
2020-08-05 10:32:01 +01:00
|
|
|
sha256 = "10n8ykag0q3ws6fc15xqyg3v980v5nq3kzpablly2rh2z7vkn8gj";
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 11:48:12 +01:00
|
|
|
nativeBuildInputs = [ pkg-config perl ];
|
2018-09-29 04:46:44 +01:00
|
|
|
buildInputs = [ openssl db cyrus_sasl zlib ];
|
2011-02-07 23:07:21 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://isync.sourceforge.net/";
|
2020-05-10 11:48:12 +01:00
|
|
|
# https://sourceforge.net/projects/isync/
|
|
|
|
changelog = "https://sourceforge.net/p/isync/isync/ci/v${version}/tree/NEWS";
|
2011-02-07 23:07:21 +00:00
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
2020-05-10 11:48:12 +01:00
|
|
|
longDescription = ''
|
|
|
|
mbsync (formerly isync) is a command line application which synchronizes
|
|
|
|
mailboxes. Currently Maildir and IMAP4 mailboxes are supported. New
|
|
|
|
messages, message deletions and flag changes can be propagated both ways.
|
|
|
|
'';
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-05-27 20:56:04 +01:00
|
|
|
platforms = platforms.unix;
|
2020-06-07 13:07:20 +01:00
|
|
|
maintainers = with maintainers; [ primeos lheckemann ];
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
}
|