9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
24 lines
807 B
Nix
24 lines
807 B
Nix
{ lib, stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pgbouncer";
|
|
version = "1.19.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz";
|
|
hash = "sha256-WMPv+btywYEzso4fA0/Vk1bqdigcZeEnQyyhAcIIo5Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libevent openssl c-ares ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.pgbouncer.org/";
|
|
description = "Lightweight connection pooler for PostgreSQL";
|
|
changelog = "https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_${replaceStrings ["."] ["_"] version}";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ _1000101 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|