summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2025-12-26 10:25:51 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-12-27 15:30:41 +0000
commitefdd8d3d58758e2dde7da182fda690bfa2da7c53 (patch)
treec766424baf9f1c0230672d1b1904e0d437150932
parent799013d71f32e69bacde52df19ec4251ae2aebe3 (diff)
pgbouncer: 1.24.1 -> 1.25.1
Fixes CVE-2025-12819. Changes: https://www.pgbouncer.org/changelog.html#pgbouncer-125x (cherry picked from commit 6ae776a97a71570f19307354a75668b7aaf36b41)
-rw-r--r--pkgs/by-name/pg/pgbouncer/package.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/by-name/pg/pgbouncer/package.nix b/pkgs/by-name/pg/pgbouncer/package.nix
index 48bf27eff184..ccd986838e19 100644
--- a/pkgs/by-name/pg/pgbouncer/package.nix
+++ b/pkgs/by-name/pg/pgbouncer/package.nix
@@ -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