nixpkgs/pkgs/tools/misc/odyssey/default.nix

29 lines
664 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, openssl }:
2019-03-12 21:20:00 +00:00
stdenv.mkDerivation rec {
pname = "odyssey";
2019-06-15 02:50:44 +00:00
version = "1.0rc1";
2019-03-12 21:20:00 +00:00
src = fetchFromGitHub {
owner = "yandex";
repo = pname;
2019-06-15 02:50:44 +00:00
rev = version;
sha256 = "0p9zzazx3bhwz7sz8l757lwdj8qx0ij2k3g0d12prs0xfi1qhcmz";
2019-03-12 21:20:00 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openssl ];
installPhase = ''
install -Dm755 -t $out/bin sources/odyssey
'';
meta = with lib; {
2019-03-12 21:20:00 +00:00
description = "Scalable PostgreSQL connection pooler";
homepage = "https://github.com/yandex/odyssey";
2019-03-12 21:20:00 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
platforms = [ "x86_64-linux" ];
};
}