summary refs log tree commit diff
path: root/pkgs/tools/networking/isync
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-02-04 13:01:55 +0100
committerMichael Weiss <dev.primeos@gmail.com>2021-02-04 19:54:54 +0100
commitd0b891c8284eed7e56f8a9b81cf5438667264317 (patch)
treecd6d0768aa2732d79cd773866253a43105728cea /pkgs/tools/networking/isync
parentc6f12879b12e155251c3744a5880b621a0b7168c (diff)
downloadnixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.tar
nixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.tar.gz
nixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.tar.bz2
nixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.tar.lz
nixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.tar.xz
nixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.tar.zst
nixpkgs-d0b891c8284eed7e56f8a9b81cf5438667264317.zip
isync: 1.3.4 -> 1.4.0
Important changes:
- The 'isync' compatibility wrapper was removed.
- The Master/Slave configuration keywords where deprecated and should be
  replaced with Far/Near. All users should update their configuration
  file accordingly. It's a trivial change and the old Master/Slave
  keywords will still work for now but result in the following message:
  Notice: Master/Slave are deprecated; use Far/Near instead.

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/tools/networking/isync')
-rw-r--r--pkgs/tools/networking/isync/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/networking/isync/default.nix b/pkgs/tools/networking/isync/default.nix
index a35b7b9c8c2..59315c4bf4b 100644
--- a/pkgs/tools/networking/isync/default.nix
+++ b/pkgs/tools/networking/isync/default.nix
@@ -1,18 +1,20 @@
 { lib, stdenv, fetchurl, pkg-config, perl
-, openssl, db, zlib, cyrus_sasl
+, openssl, db, cyrus_sasl, zlib
+, Security
 }:
 
 stdenv.mkDerivation rec {
   pname = "isync";
-  version = "1.3.4";
+  version = "1.4.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/isync/${pname}-${version}.tar.gz";
-    sha256 = "0w9fqz1qsdm1zfpv9jp5v2dav6pyigf1n6x7asxi0fg58sf49sz8";
+    sha256 = "0pkqvsdmi85xrhzzc7mz87vdvvvp01lf8akhfdnmsdlks8zbzy44";
   };
 
   nativeBuildInputs = [ pkg-config perl ];
-  buildInputs = [ openssl db cyrus_sasl zlib ];
+  buildInputs = [ openssl db cyrus_sasl zlib ]
+    ++ lib.optionals stdenv.isDarwin [ Security ];
 
   meta = with lib; {
     homepage = "http://isync.sourceforge.net/";