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>
This commit is contained in:
Michael Weiss
2021-02-04 19:54:54 +01:00
co-authored by Sandro
parent c6f12879b1
commit d0b891c828
3 changed files with 15 additions and 5 deletions
+6 -4
View File
@@ -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/";