2016-01-05 11:20:16 +00:00
|
|
|
{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl
|
|
|
|
, autoconf, automake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "isync-git-2015-11-08";
|
|
|
|
rev = "46e792";
|
|
|
|
|
|
|
|
src = fetchgit {
|
2017-02-16 15:48:26 +00:00
|
|
|
url = "https://git.code.sf.net/p/isync/isync";
|
2016-01-05 11:20:16 +00:00
|
|
|
inherit rev;
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "02bm5m3bwpfns7qdwfybyl4fwa146n55v67pdchkhxaqpa4ddws1";
|
2016-01-05 11:20:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl pkgconfig db cyrus_sasl autoconf automake ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
touch ChangeLog
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://isync.sourceforge.net/;
|
|
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
|
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|