2024-02-29 20:09:43 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl, libevent, c-ares, pkg-config, systemd, nixosTests }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pgbouncer";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.23.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-01-11 07:51:40 +00:00
|
|
|
url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-GWO0lyMdmlYKYtJm5KLq5ogatAGFPZPl0pLDdA7sUIQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2024-02-29 20:09:43 +00:00
|
|
|
buildInputs = [ libevent openssl c-ares ]
|
2024-09-26 11:04:55 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isLinux systemd;
|
2020-04-24 23:36:52 +00:00
|
|
|
enableParallelBuilding = true;
|
2024-09-26 11:04:55 +00:00
|
|
|
configureFlags = lib.optional stdenv.hostPlatform.isLinux "--with-systemd";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
passthru.tests = {
|
|
|
|
pgbouncer = nixosTests.pgbouncer;
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2023-01-11 07:51:40 +00:00
|
|
|
homepage = "https://www.pgbouncer.org/";
|
2023-11-16 04:20:00 +00:00
|
|
|
mainProgram = "pgbouncer";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Lightweight connection pooler for PostgreSQL";
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_${replaceStrings ["."] ["_"] version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.isc;
|
2021-10-28 06:52:43 +00:00
|
|
|
maintainers = with maintainers; [ _1000101 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|