mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
e6439c7698
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pgbouncer/versions
20 lines
584 B
Nix
20 lines
584 B
Nix
{ stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pgbouncer";
|
|
version = "1.11.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0w3y53kwnkcm9fmf28zbjvqk6ivfic5f2k3nflvca1i8iaj2z044";
|
|
};
|
|
|
|
buildInputs = [ libevent openssl c-ares pkg-config ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://pgbouncer.github.io;
|
|
description = "Lightweight connection pooler for PostgreSQL";
|
|
license = licenses.isc;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|