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

23 lines
646 B
Nix
Raw Normal View History

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