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/
This commit is contained in:
Thomas Mühlbacher
2025-04-19 13:00:21 +02:00
parent b4b9c47c10
commit b01d034d93
+4 -5
View File
@@ -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
'';