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

23 lines
644 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
2017-12-15 17:55:31 +00:00
stdenv.mkDerivation rec {
pname = "pgbouncer";
2020-11-29 08:38:11 +00:00
version = "1.15.0";
2017-12-15 17:55:31 +00:00
src = fetchurl {
url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
2020-11-29 08:38:11 +00:00
sha256 = "100ksf2wcdrsscaiq78s030mb48hscjr3kfbm9h6y9d6i8arwnp0";
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 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
};
}