2019-08-15 01:20:42 +01:00
|
|
|
{ stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
|
2017-12-15 17:55:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pgbouncer";
|
2019-10-23 15:52:58 +01:00
|
|
|
version = "1.12.0";
|
2017-12-15 17:55:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
|
2019-10-23 15:52:58 +01:00
|
|
|
sha256 = "0gi7ggmyjqd4kxdwm5csmzmjmfrjx7q20dfzk3da1bvc6xj6ag0v";
|
2017-12-15 17:55:31 +00:00
|
|
|
};
|
|
|
|
|
2019-10-23 15:52:58 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libevent openssl c-ares ];
|
|
|
|
enableParallelBuilding = true;
|
2017-12-15 17:55:31 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-10-23 15:52:58 +01:00
|
|
|
homepage = "https://pgbouncer.github.io";
|
2017-12-15 17:55:31 +00:00
|
|
|
description = "Lightweight connection pooler for PostgreSQL";
|
|
|
|
license = licenses.isc;
|
2019-08-15 01:20:42 +01:00
|
|
|
platforms = platforms.all;
|
2017-12-15 17:55:31 +00:00
|
|
|
};
|
|
|
|
}
|