2014-01-31 20:05:37 +00:00
|
|
|
{ fetchurl, stdenv, openssl, pkgconfig, db }:
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-12 11:32:57 +00:00
|
|
|
name = "isync-1.1.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";
|
2014-08-12 11:32:57 +00:00
|
|
|
sha256 = "14blgxhpl78bpr1291zb7n3y9g8jpgmnpdnbl0vp2qplw76zv9f3";
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
|
2014-01-31 20:05:37 +00:00
|
|
|
buildInputs = [ openssl pkgconfig db ];
|
2011-02-07 23:07:21 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://isync.sourceforge.net/;
|
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
2014-01-24 15:27:36 +00:00
|
|
|
license = [ "GPLv2+" ];
|
2011-02-07 23:07:21 +00:00
|
|
|
|
2014-08-12 11:32:57 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
|
2014-08-22 21:16:38 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-02-07 23:07:21 +00:00
|
|
|
};
|
|
|
|
}
|