nixpkgs/pkgs/tools/networking/isync/default.nix
2014-02-15 12:03:02 +01:00

23 lines
634 B
Nix

{ fetchurl, stdenv, openssl, pkgconfig, db }:
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 db ];
meta = {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
license = [ "GPLv2+" ];
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
};
}