about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-01-01 13:42:46 +0100
committerThomas Gerbet <thomas@gerbet.me>2023-01-01 13:42:46 +0100
commite56a1f2f921a618e4eaa4ba4ceb978c0f64367ad (patch)
tree89f5db3251614f0455ec30af2cf8b3b34dd083b8 /pkgs/servers/sql
parent1ca08d4c638a89f2c82bec993f9ca4893faf3241 (diff)
pgbouncer: 1.17.0 -> 1.18.0
https://www.pgbouncer.org/changelog.html#pgbouncer-118x
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/pgbouncer/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/sql/pgbouncer/default.nix b/pkgs/servers/sql/pgbouncer/default.nix
index 0a6bfda03a73f..46030c286a4e6 100644
--- a/pkgs/servers/sql/pgbouncer/default.nix
+++ b/pkgs/servers/sql/pgbouncer/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "pgbouncer";
-  version = "1.17.0";
+  version = "1.18.0";
 
   src = fetchurl {
-    url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
-    sha256 = "sha256-ZXMJt7xceoXL9wqaRBtTX3gkEjCB6rt7qG0ANJolbiM=";
+    url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz";
+    sha256 = "sha256-k0nJ5Z9viBVjVPT2ryfNsBSiNbAK4YTLqjdoi9DfVEw=";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with lib; {
-    homepage = "https://pgbouncer.github.io";
+    homepage = "https://www.pgbouncer.org/";
     description = "Lightweight connection pooler for PostgreSQL";
     license = licenses.isc;
     maintainers = with maintainers; [ _1000101 ];