about summary refs log tree commit diff
path: root/pkgs/tools/networking/isync/default.nix
blob: aca9b47195d31ae1c8ddf37e7d39cc3b2de162df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ fetchurl, stdenv, openssl, pkgconfig, db4 }:

stdenv.mkDerivation rec {
  name = "isync-1.0.4";

  src = fetchurl {
    url = "mirror://sourceforge/isync/isync-1.0.4.tar.gz";
    sha256 = "1xmgzypl5a3i0fz1ca55vfbs5mv2l9icwf2gk8rvlbwrkn2wid68";
  };

  patches = [ ./isync-recursice-imap.patch ]; # usefull patch to enable subfolders listing
  buildInputs = [ openssl pkgconfig db4 ];

  meta = {
    homepage = http://isync.sourceforge.net/;
    description = "Free IMAP and MailDir mailbox synchronizer";
    licenses = [ "GPLv2+" ];

    maintainers = [ stdenv.lib.maintainers.viric ];
    platforms = stdenv.lib.platforms.linux;
  };
}