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

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

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

  buildInputs = [ openssl pkgconfig db cyrus_sasl ];

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

    maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
    platforms = stdenv.lib.platforms.unix;
  };
}