about summary refs log tree commit diff
path: root/pkgs/tools/networking/isync/default.nix
blob: 9587dfee613bf270b39a4ad3c441c2940a215e9d (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.6";

  src = fetchurl {
    url = "mirror://sourceforge/isync/${name}.tar.gz";
    sha256 = "0bv3hw6mc9xi55q6lpyz1w3dyrk6rlxa8ny2x1b44mrnbrx7chz5";
  };

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