nixpkgs/pkgs/tools/networking/isync/unstable.nix

32 lines
810 B
Nix
Raw Normal View History

2017-07-12 15:52:48 +01:00
{
stdenv, fetchgit,
autoconf, automake, cyrus_sasl, db, openssl, perl, pkgconfig, zlib,
}:
2016-01-05 11:20:16 +00:00
stdenv.mkDerivation rec {
2017-07-12 15:52:48 +01:00
name = "isync-git-20170514";
rev = "4b3768806278a70db696ba52645dc1b6eb8de58a";
2016-01-05 11:20:16 +00:00
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;
2017-07-12 15:52:48 +01:00
sha256 = "1cv1isw01cfp7724z6f4pf6k4rx3k1lg0pc1xcq17zpikx9d10fb";
2016-01-05 11:20:16 +00:00
};
2017-07-12 15:52:48 +01:00
nativeBuildInputs = [ autoconf automake perl pkgconfig ];
buildInputs = [ cyrus_sasl db openssl zlib ];
2016-01-05 11:20:16 +00:00
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 ttuegel ];
2016-01-05 11:20:16 +00:00
platforms = platforms.unix;
};
}