about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-10-23 07:52:58 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-10-23 16:52:58 +0200
commita815dd730b5841ae8e43be3075488abc4964e0b2 (patch)
tree5c88df33acf9a9c559f37dd397bb95e420372472 /pkgs/servers/sql
parent5914078b0bb25d7e4b6a9e4ace9b9cb132a90f09 (diff)
downloadnixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.tar
nixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.tar.gz
nixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.tar.bz2
nixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.tar.lz
nixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.tar.xz
nixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.tar.zst
nixlib-a815dd730b5841ae8e43be3075488abc4964e0b2.zip
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
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/pgbouncer/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/servers/sql/pgbouncer/default.nix b/pkgs/servers/sql/pgbouncer/default.nix
index 76b35a345b5b..f71afc2b674e 100644
--- a/pkgs/servers/sql/pgbouncer/default.nix
+++ b/pkgs/servers/sql/pgbouncer/default.nix
@@ -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;