Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #235521 from marsam/update-pgbouncer

pgbouncer: 1.19.0 -> 1.19.1

authored by Pol Dellaiera and committed by GitHub e70af2ea e044112c

+3 -2
+3 -2
pkgs/servers/sql/pgbouncer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgbouncer"; 5 - version = "1.19.0"; 5 + version = "1.19.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-rwsF6X0OH9mtRf4A6m0qk0xjB19n9+LM7yylnj2M5oI="; 9 + hash = "sha256-WMPv+btywYEzso4fA0/Vk1bqdigcZeEnQyyhAcIIo5Q="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; ··· 16 16 meta = with lib; { 17 17 homepage = "https://www.pgbouncer.org/"; 18 18 description = "Lightweight connection pooler for PostgreSQL"; 19 + changelog = "https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_${replaceStrings ["."] ["_"] version}"; 19 20 license = licenses.isc; 20 21 maintainers = with maintainers; [ _1000101 ]; 21 22 platforms = platforms.all;