summary refs log tree commit diff
path: root/pkgs/tools/networking/isync/unstable.nix
blob: 309190ddfb4da8a88933f68bb7c9515ca9d2ef4c (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
{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl
, autoconf, automake }:

stdenv.mkDerivation rec {
  name = "isync-git-2015-11-08";
  rev = "46e792";

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

  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;
  };
}