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