pgbouncer: 1.17.0 -> 1.18.0

https://www.pgbouncer.org/changelog.html#pgbouncer-118x
This commit is contained in:
Thomas Gerbet 2023-01-01 13:42:46 +01:00
parent 1ca08d4c63
commit e56a1f2f92

View file

@ -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 ];