pgbouncer: 1.19.0 -> 1.19.1

https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_1_19_1
This commit is contained in:
Mario Rodas 2023-06-02 04:20:00 +00:00
parent 87881eb3bd
commit cc0171f7b6

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "pgbouncer";
version = "1.19.0";
version = "1.19.1";
src = fetchurl {
url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-rwsF6X0OH9mtRf4A6m0qk0xjB19n9+LM7yylnj2M5oI=";
hash = "sha256-WMPv+btywYEzso4fA0/Vk1bqdigcZeEnQyyhAcIIo5Q=";
};
nativeBuildInputs = [ pkg-config ];
@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://www.pgbouncer.org/";
description = "Lightweight connection pooler for PostgreSQL";
changelog = "https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_${replaceStrings ["."] ["_"] version}";
license = licenses.isc;
maintainers = with maintainers; [ _1000101 ];
platforms = platforms.all;