3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/sql/pgbouncer/default.nix

21 lines
546 B
Nix
Raw Normal View History

2017-12-15 17:55:31 +00:00
{ stdenv, fetchurl, openssl, libevent }:
stdenv.mkDerivation rec {
name = "pgbouncer-${version}";
version = "1.10.0";
2017-12-15 17:55:31 +00:00
src = fetchurl {
url = "https://pgbouncer.github.io/downloads/files/${version}/${name}.tar.gz";
sha256 = "1m8vsxyna5grs5p0vnxf3fxxnkk9aqjf3qmr2bbkpkhlzr11986q";
2017-12-15 17:55:31 +00:00
};
buildInputs = [ libevent openssl ];
meta = with stdenv.lib; {
homepage = https://pgbouncer.github.io;
description = "Lightweight connection pooler for PostgreSQL";
license = licenses.isc;
platforms = platforms.linux;
};
}