3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/sql/pgbouncer/default.nix

24 lines
694 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";
2021-10-22 16:19:23 +01:00
version = "1.16.0";
2017-12-15 17:55:31 +00:00
src = fetchurl {
url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
2021-10-22 16:19:23 +01:00
sha256 = "0li66jk1v07bpfmmqzcqjn5vkhglfhwnbncc5bpalg5qidhr38x4";
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;
2021-10-22 16:19:23 +01:00
maintainers = with maintainers; [ _1000101 ];
platforms = platforms.all;
2017-12-15 17:55:31 +00:00
};
}