2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
|
2017-12-15 18:55:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "pgbouncer";
|
2020-11-29 09:38:11 +01:00
|
|
|
version = "1.15.0";
|
2017-12-15 18:55:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
|
2020-11-29 09:38:11 +01:00
|
|
|
sha256 = "100ksf2wcdrsscaiq78s030mb48hscjr3kfbm9h6y9d6i8arwnp0";
|
2017-12-15 18:55:31 +01:00
|
|
|
};
|
|
|
|
|
2019-10-23 16:52:58 +02:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libevent openssl c-ares ];
|
|
|
|
enableParallelBuilding = true;
|
2017-12-15 18:55:31 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-10-23 16:52:58 +02:00
|
|
|
homepage = "https://pgbouncer.github.io";
|
2017-12-15 18:55:31 +01:00
|
|
|
description = "Lightweight connection pooler for PostgreSQL";
|
|
|
|
license = licenses.isc;
|
2019-08-15 02:20:42 +02:00
|
|
|
platforms = platforms.all;
|
2017-12-15 18:55:31 +01:00
|
|
|
};
|
|
|
|
}
|