nixpkgs/pkgs/servers/sql/pgbouncer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
693 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, libevent, c-ares, pkg-config }:
2017-12-15 18:55:31 +01:00
stdenv.mkDerivation rec {
pname = "pgbouncer";
2022-04-08 23:30:02 +02:00
version = "1.17.0";
2017-12-15 18:55:31 +01:00
src = fetchurl {
url = "https://pgbouncer.github.io/downloads/files/${version}/${pname}-${version}.tar.gz";
2022-04-08 23:30:02 +02:00
sha256 = "sha256-ZXMJt7xceoXL9wqaRBtTX3gkEjCB6rt7qG0ANJolbiM=";
2017-12-15 18:55:31 +01:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libevent openssl c-ares ];
enableParallelBuilding = true;
2017-12-15 18:55:31 +01:00
meta = with lib; {
homepage = "https://pgbouncer.github.io";
2017-12-15 18:55:31 +01:00
description = "Lightweight connection pooler for PostgreSQL";
license = licenses.isc;
2021-10-22 17:19:23 +02:00
maintainers = with maintainers; [ _1000101 ];
platforms = platforms.all;
2017-12-15 18:55:31 +01:00
};
}