about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorTom Hinton <tom.hinton@cse.org.uk>2014-03-18 10:14:52 +0000
committerTom Hinton <tom.hinton@cse.org.uk>2014-03-18 10:14:52 +0000
commitcf0f710b13c268529c065de1b484019ce9847875 (patch)
tree90a4c0f3c245c991594b0d47b67084d80e8519fa /pkgs/tools
parentcca592b45518bd09b54010183f32b32f604ce5ae (diff)
downloadnixlib-cf0f710b13c268529c065de1b484019ce9847875.tar
nixlib-cf0f710b13c268529c065de1b484019ce9847875.tar.gz
nixlib-cf0f710b13c268529c065de1b484019ce9847875.tar.bz2
nixlib-cf0f710b13c268529c065de1b484019ce9847875.tar.lz
nixlib-cf0f710b13c268529c065de1b484019ce9847875.tar.xz
nixlib-cf0f710b13c268529c065de1b484019ce9847875.tar.zst
nixlib-cf0f710b13c268529c065de1b484019ce9847875.zip
Update isync version to 1.1.0 (doesn't need recursive listing patch any more)
Diffstat (limited to 'pkgs/tools')
-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 86986ed9b954..ed01ccacd797 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 = {