2015-04-07 09:43:08 +00:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-17 14:00:42 +00:00
|
|
|
name = "isync-1.2.1";
|
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";
|
2015-11-17 14:00:42 +00:00
|
|
|
sha256 = "1bij6nm06ghkg98n2pdyacam2fyg5y8f7ajw0d5653m0r4ldw5p7";
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
|
2015-04-07 09:43:08 +00:00
|
|
|
buildInputs = [ openssl pkgconfig 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
|
|
|
|
2015-05-27 19:56:04 +00:00
|
|
|
maintainers = with maintainers; [ the-kenny viric ];
|
|
|
|
platforms = platforms.unix;
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
}
|