summary refs log tree commit diff
path: root/pkgs/tools/networking/isync/default.nix
blob: 2d3ffb2cb0a8c9aa2cc8183441169a1a47d0188e (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 }:

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

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

  buildInputs = [ openssl pkgconfig db ];

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