2015-04-07 02:43:08 -07:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
|
2011-02-07 15:07:21 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-05 16:17:25 -07:00
|
|
|
name = "isync-1.2.0";
|
2011-02-07 15:07:21 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-02 09:15:54 -07:00
|
|
|
url = "mirror://sourceforge/isync/${name}.tar.gz";
|
2015-04-05 16:17:25 -07:00
|
|
|
sha256 = "0n8fwvv88h7ps7qs122kgh1yx5308765fiwqav5h7m272vg7hf43";
|
2011-02-07 15:07:21 -08:00
|
|
|
};
|
|
|
|
|
2015-04-07 02:43:08 -07:00
|
|
|
buildInputs = [ openssl pkgconfig db cyrus_sasl ];
|
2011-02-07 15:07:21 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://isync.sourceforge.net/;
|
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
2014-01-24 07:27:36 -08:00
|
|
|
license = [ "GPLv2+" ];
|
2011-02-07 15:07:21 -08:00
|
|
|
|
2014-08-12 04:32:57 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
|
2014-08-22 14:16:38 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-02-07 15:07:21 -08:00
|
|
|
};
|
|
|
|
}
|