summary refs log tree commit diff
path: root/pkgs/tools/networking/isync/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/isync/default.nix')
-rw-r--r--pkgs/tools/networking/isync/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/networking/isync/default.nix b/pkgs/tools/networking/isync/default.nix
new file mode 100644
index 000000000000..aca9b47195d3
--- /dev/null
+++ b/pkgs/tools/networking/isync/default.nix
@@ -0,0 +1,22 @@
+{ fetchurl, stdenv, openssl, pkgconfig, db4 }:
+
+stdenv.mkDerivation rec {
+  name = "isync-1.0.4";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/isync/isync-1.0.4.tar.gz";
+    sha256 = "1xmgzypl5a3i0fz1ca55vfbs5mv2l9icwf2gk8rvlbwrkn2wid68";
+  };
+
+  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;
+  };
+}