diff options
| author | Fernando Rodrigues <alpha@sigmasquadron.net> | 2025-12-28 05:28:14 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-28 05:28:14 +0000 |
| commit | 5c84a81d259b415b071a34efea61b0fae832e928 (patch) | |
| tree | 28b6d17874c5e16e8866c0d8e2ef0833578416eb | |
| parent | 917ae4bbc5534eaa443c22b25ef35364b333bdcd (diff) | |
| parent | efdd8d3d58758e2dde7da182fda690bfa2da7c53 (diff) | |
[Backport release-25.05] pgbouncer: 1.24.1 -> 1.25.1 (#474580)
| -rw-r--r-- | pkgs/by-name/pg/pgbouncer/package.nix | 12 |
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 |
