Commit b01d034d authored by Thomas Mühlbacher's avatar Thomas Mühlbacher
Browse files

isync: 1.5.0-unstable-2024-09-29 -> 1.5.1

Fixes among other things `--dry-run` actually still making some changes.

Release notes: https://sourceforge.net/projects/isync/files/isync/1.5.1/
parent b4b9c47c
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -20,12 +20,12 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "isync";
  version = "1.5.0-unstable-2024-09-29";
  version = "1.5.1";

  src = fetchgit {
    url = "https://git.code.sf.net/p/isync/isync";
    rev = "3c4b5f1c83a568f18c14c93aab95c9a853edfd15";
    hash = "sha256-MRjWr88sxd3C+YTMCqEymxmLj5h+uJKh9mcG+aEqf64=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-l0jL4CzAdFtQGekbywic1Kuihy3ZQi4ozhSEcbJI0t0=";
  };

  # Fixes "Fatal: buffer too small" error
@@ -33,8 +33,7 @@ stdenv.mkDerivation (finalAttrs: {
  env.NIX_CFLAGS_COMPILE = "-DQPRINTF_BUFF=4000";

  autoreconfPhase = ''
    echo "1.5.0-3c4b5" > VERSION
    echo "See https://sourceforge.net/p/isync/isync/ci/3c4b5f1c83a568f18c14c93aab95c9a853edfd15/log/?path=" > ChangeLog
    echo "${finalAttrs.version}" > VERSION
    ./autogen.sh
  '';