summary refs log tree commit diff
path: root/pkgs/tools/networking/isync/unstable.nix
blob: 9d32f91d0e191c803183335bed5d6c5238aa37e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  stdenv, fetchgit,
  autoconf, automake, cyrus_sasl, db, openssl, perl, pkgconfig, zlib,
}:

stdenv.mkDerivation rec {
  name = "isync-git-20170514";
  rev = "4b3768806278a70db696ba52645dc1b6eb8de58a";

  src = fetchgit {
    url = "https://git.code.sf.net/p/isync/isync";
    inherit rev;
    sha256 = "1cv1isw01cfp7724z6f4pf6k4rx3k1lg0pc1xcq17zpikx9d10fb";
  };

  nativeBuildInputs = [ autoconf automake perl pkgconfig ];
  buildInputs = [ cyrus_sasl db openssl zlib ];

  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 ];
    platforms = platforms.unix;
  };
}