summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-03-18 11:47:21 +0100
committerPeter Simons <simons@cryp.to>2014-03-18 11:47:21 +0100
commita42374ff66e139ddc7aed6a144e8f9c468b68d2b (patch)
tree5e5f12b7575e1f760d48c23fb4bfe2dc24ba1cb4 /pkgs
parent186e5a0f8179cd977a05e11568943dac9b9a3d9d (diff)
parentcf0f710b13c268529c065de1b484019ce9847875 (diff)
downloadnixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.tar
nixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.tar.gz
nixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.tar.bz2
nixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.tar.lz
nixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.tar.xz
nixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.tar.zst
nixpkgs-a42374ff66e139ddc7aed6a144e8f9c468b68d2b.zip
Merge pull request #1979 from larkery/update-isync
Update isync version to 1.1.0 (doesn't need recursive listing patch any ...
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/isync/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/networking/isync/default.nix b/pkgs/tools/networking/isync/default.nix
index 86986ed9b95..ed01ccacd79 100644
--- a/pkgs/tools/networking/isync/default.nix
+++ b/pkgs/tools/networking/isync/default.nix
@@ -1,14 +1,13 @@
 { fetchurl, stdenv, openssl, pkgconfig, db }:
 
 stdenv.mkDerivation rec {
-  name = "isync-1.0.6";
+  name = "isync-1.1.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/isync/${name}.tar.gz";
-    sha256 = "0bv3hw6mc9xi55q6lpyz1w3dyrk6rlxa8ny2x1b44mrnbrx7chz5";
+    sha256 = "51f5618c239013fb770f98ae269f24ee417214efaaf7e22821b4a27cf9a9213c";
   };
 
-  patches = [ ./isync-recursice-imap.patch ]; # usefull patch to enable subfolders listing
   buildInputs = [ openssl pkgconfig db ];
 
   meta = {