pgbouncer: 1.24.1 -> 1.25.1

Fixes CVE-2025-12819.

Changes:
https://www.pgbouncer.org/changelog.html#pgbouncer-125x
(cherry picked from commit 6ae776a97a)
This commit is contained in:
Thomas Gerbet
2025-12-26 10:25:51 +01:00
committed by github-actions[bot]
parent 799013d71f
commit efdd8d3d58

View File

@@ -6,20 +6,26 @@
libevent,
c-ares,
pkg-config,
python3,
pandoc,
systemd,
nixosTests,
}:
stdenv.mkDerivation rec {
pname = "pgbouncer";
version = "1.24.1";
version = "1.25.1";
src = fetchurl {
url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz";
hash = "sha256-2nKjq6EwcodtBVo+WN1Kukpd5O1hSOcwMxhSRVmP0+A=";
hash = "sha256-blZq6S/j739qG54m1gSffXyjnEDinns49tVQCuFdhGU=";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
pkg-config
python3
pandoc
];
buildInputs = [
libevent
openssl