summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-08-19 13:47:48 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-19 22:47:48 +0200
commitaacb2840d1bc463eeb6f3ae041578224755d4335 (patch)
tree0b8e850808058aec84d51d8a24227bfe358da66a /pkgs/servers/sql
parent7fa8623d115998fa29a6e37076bc13ab316fe6f9 (diff)
downloadnixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.tar
nixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.tar.gz
nixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.tar.bz2
nixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.tar.lz
nixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.tar.xz
nixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.tar.zst
nixlib-aacb2840d1bc463eeb6f3ae041578224755d4335.zip
pgbouncer: 1.8.1 -> 1.9.0 (#45168)
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.
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/pgbouncer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/pgbouncer/default.nix b/pkgs/servers/sql/pgbouncer/default.nix
index 7906546ec1ca..ef8b77ad1176 100644
--- a/pkgs/servers/sql/pgbouncer/default.nix
+++ b/pkgs/servers/sql/pgbouncer/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "pgbouncer-${version}";
-  version = "1.8.1";
+  version = "1.9.0";
 
   src = fetchurl {
     url = "https://pgbouncer.github.io/downloads/files/${version}/${name}.tar.gz";
-    sha256 = "1j4d7rkivg3vg27pvirigq9cy4v7pi48x7w57baq131c5lmdx2zs";
+    sha256 = "012zh9l68r1ramrd66yam6y3al0i85dvvg4wwwkn6qwq6dhskv1r";
   };
 
   buildInputs = [ libevent openssl ];