about summary refs log tree commit diff
path: root/pkgs/tools/networking/isync
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-07 23:07:21 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-07 23:07:21 +0000
commit65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c (patch)
tree05b8b57afc8a42bd877e031809d8873ebdc9fdbe /pkgs/tools/networking/isync
parente0d871ba914c51610e817f9f8f576a5de1cd688c (diff)
downloadnixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.tar
nixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.tar.gz
nixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.tar.bz2
nixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.tar.lz
nixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.tar.xz
nixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.tar.zst
nixlib-65968c289a7ad4ab57eed36ed52bd3e2d2d5a92c.zip
Adding isync
svn path=/nixpkgs/trunk/; revision=25798
Diffstat (limited to 'pkgs/tools/networking/isync')
-rw-r--r--pkgs/tools/networking/isync/default.nix21
1 files changed, 21 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..03abdbcca626
--- /dev/null
+++ b/pkgs/tools/networking/isync/default.nix
@@ -0,0 +1,21 @@
+{ 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";
+  };
+
+  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;
+  };
+}