about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-01-02 21:01:51 +0200
committerGitHub <noreply@github.com>2023-01-02 21:01:51 +0200
commit9f5839a6ea0e62a85c8ed35eb6b665fe778c3b4a (patch)
tree85ff4aa8469653ef496d056f9cfdf074c65e7254 /pkgs/servers/sql
parent34f4701127a26d0651e867595d50e5c3b5b3c7d1 (diff)
parente56a1f2f921a618e4eaa4ba4ceb978c0f64367ad (diff)
Merge pull request #208616 from LeSuisse/pgbouncer-1.18.0
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 ];