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>
wip/yesman
Michael Weiss 3 years ago
parent c6f12879b1
commit d0b891c828
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83
  1. 6
      nixos/doc/manual/release-notes/rl-2103.xml
  2. 10
      pkgs/tools/networking/isync/default.nix
  3. 4
      pkgs/top-level/all-packages.nix

@ -666,6 +666,12 @@ self: super:
<varname>services.restic</varname> now uses a dedicated cache directory for every backup defined in <varname>services.restic.backups</varname>. The old global cache directory, <literal>/root/.cache/restic</literal>, is now unused and can be removed to free up disk space.
</para>
</listitem>
<listitem>
<para>
<literal>isync</literal>: The <literal>isync</literal> compatibility wrapper was removed and the Master/Slave
terminology has been deprecated and should be replaced with Far/Near in the configuration file.
</para>
</listitem>
</itemizedlist>
</section>
</section>

@ -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/";

@ -5327,7 +5327,9 @@ in
ispike = callPackage ../development/libraries/science/robotics/ispike { };
isync = callPackage ../tools/networking/isync { };
isync = callPackage ../tools/networking/isync {
inherit (darwin.apple_sdk.frameworks) Security;
};
itm-tools = callPackage ../development/tools/misc/itm-tools { };

Loading…
Cancel
Save