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

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

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

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

  meta = with stdenv.lib; {
    homepage = "http://isync.sourceforge.net/";
    description = "Free IMAP and MailDir mailbox synchronizer";
    license = licenses.gpl2Plus;
    platforms = platforms.unix;
  };
}