nixpkgs/pkgs/servers/sql/pgbouncer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.0 KiB
Nix
Raw Normal View History

2024-02-02 18:33:49 +00:00
{ lib, stdenv, fetchurl, openssl, libevent, c-ares, pkg-config, systemd, nixosTests }:
2017-12-15 17:55:31 +00:00
stdenv.mkDerivation rec {
pname = "pgbouncer";
2024-07-04 02:33:43 +01:00
version = "1.23.0";
2017-12-15 17:55:31 +00:00
src = fetchurl {
url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz";
2024-07-04 02:33:43 +01:00
hash = "sha256-GAQhnDAe8DXn9B6pr/HlGAtLr4hF1hBh6aEIWTYyMiY=";
2017-12-15 17:55:31 +00:00
};
nativeBuildInputs = [ pkg-config ];
2024-02-02 18:33:49 +00:00
buildInputs = [ libevent openssl c-ares ]
++ lib.optional stdenv.isLinux systemd;
enableParallelBuilding = true;
2024-02-02 18:33:49 +00:00
configureFlags = lib.optional stdenv.isLinux "--with-systemd";
2017-12-15 17:55:31 +00:00
passthru.tests = {
pgbouncer = nixosTests.pgbouncer;
};
meta = with lib; {
homepage = "https://www.pgbouncer.org/";
2023-10-21 18:37:07 +01:00
mainProgram = "pgbouncer";
2017-12-15 17:55:31 +00:00
description = "Lightweight connection pooler for PostgreSQL";
changelog = "https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_${replaceStrings ["."] ["_"] version}";
2017-12-15 17:55:31 +00:00
license = licenses.isc;
2021-10-22 16:19:23 +01:00
maintainers = with maintainers; [ _1000101 ];
platforms = platforms.all;
2017-12-15 17:55:31 +00:00
};
}