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
690 B
Nix
Raw Normal View History

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