pgbouncer: 1.11.0 -> 1.12.0 (#71746)

* pgbouncer: 1.11.0 -> 1.12.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgbouncer/versions

* pgbouncer: enable parallel builds

+ move pkgconfig to nativeBuildInputs
This commit is contained in:
R. RyanTM 2019-10-23 07:52:58 -07:00 committed by Renaud
parent 5914078b0b
commit a815dd730b

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