Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2019-08-17 09:39:23 +02:00
174 changed files with 4833 additions and 1993 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl, libevent }:
{ stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
stdenv.mkDerivation rec {
pname = "pgbouncer";
@@ -9,12 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "1m8vsxyna5grs5p0vnxf3fxxnkk9aqjf3qmr2bbkpkhlzr11986q";
};
buildInputs = [ libevent openssl ];
buildInputs = [ libevent openssl c-ares pkg-config ];
meta = with stdenv.lib; {
homepage = https://pgbouncer.github.io;
description = "Lightweight connection pooler for PostgreSQL";
license = licenses.isc;
platforms = platforms.linux;
platforms = platforms.all;
};
}