postgresqlPackages.repmgr: 5.4.1 -> 5.5.0

(cherry picked from commit a7daa5426b)
This commit is contained in:
Wolfgang Walther 2024-11-15 20:56:11 +00:00 committed by github-actions[bot]
parent 92710380e7
commit 0bab9fc24a

View File

@ -10,13 +10,13 @@
buildPostgresqlExtension rec {
pname = "repmgr";
version = "5.4.1";
version = "5.5.0";
src = fetchFromGitHub {
owner = "EnterpriseDB";
repo = "repmgr";
rev = "v${version}";
sha256 = "sha256-OaEoP1BajVW9dt8On9Ppf8IXmAk47HHv8zKw3WlsLHw=";
sha256 = "sha256-8G2CzzkWTKEglpUt1Gr7d/DuHJvCIEjsbYDMl3Zt3cs=";
};
nativeBuildInputs = [ flex ];
@ -29,9 +29,6 @@ buildPostgresqlExtension rec {
license = licenses.postgresql;
platforms = postgresql.meta.platforms;
maintainers = with maintainers; [ zimbatm ];
# PostgreSQL 17 support issue upstream: https://github.com/EnterpriseDB/repmgr/issues/856
# Check after next package update.
broken = versionAtLeast postgresql.version "17" && version == "5.4.1";
};
}