2015-04-07 11:43:08 +02:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
|
2011-02-08 00:07:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-06 01:17:25 +02:00
|
|
|
name = "isync-1.2.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";
|
2015-04-06 01:17:25 +02:00
|
|
|
sha256 = "0n8fwvv88h7ps7qs122kgh1yx5308765fiwqav5h7m272vg7hf43";
|
2011-02-08 00:07:21 +01:00
|
|
|
};
|
|
|
|
|
2015-04-07 11:43:08 +02:00
|
|
|
buildInputs = [ openssl pkgconfig db cyrus_sasl ];
|
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-27 21:56:04 +02:00
|
|
|
license = with licenses; [ gpl2Plus ];
|
2011-02-08 00:07:21 +01:00
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
maintainers = with maintainers; [ the-kenny viric ];
|
|
|
|
platforms = platforms.unix;
|
2011-02-08 00:07:21 +01:00
|
|
|
};
|
|
|
|
}
|