summary refs log tree commit diff
path: root/pkgs/tools/misc/odyssey/default.nix
blob: f736184ea50eaeefb3588692e91b9dccb462553a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, cmake, openssl }:

stdenv.mkDerivation rec {
  pname = "odyssey";
  version = "1.0rc1";

  src = fetchFromGitHub {
    owner = "yandex";
    repo = pname;
    rev = version;
    sha256 = "0p9zzazx3bhwz7sz8l757lwdj8qx0ij2k3g0d12prs0xfi1qhcmz";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ openssl ];

  installPhase = ''
    install -Dm755 -t $out/bin sources/odyssey
  '';

  meta = with stdenv.lib; {
    description = "Scalable PostgreSQL connection pooler";
    homepage = "https://github.com/yandex/odyssey";
    license = licenses.bsd3;
    maintainers = [ maintainers.marsam ];
    platforms = [ "x86_64-linux" ];
  };
}