odyssey: init at 2019-03-12

This commit is contained in:
Mario Rodas 2019-03-12 16:20:00 -05:00
parent da1a2b1eea
commit fef17b195a
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, cmake, openssl }:
stdenv.mkDerivation rec {
pname = "odyssey";
version = "unstable-2019-03-12";
src = fetchFromGitHub {
owner = "yandex";
repo = pname;
rev = "af015839b03f30260c75d8f565521910c0694ed6";
sha256 = "1cnnypvk78wp1qmqfriky40ls0grkp4v46mypyaq5kl8ppknvnvs";
};
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" ];
};
}

View file

@ -4628,6 +4628,8 @@ in
odt2txt = callPackage ../tools/text/odt2txt { };
odyssey = callPackage ../tools/misc/odyssey { };
offlineimap = callPackage ../tools/networking/offlineimap { };
oh-my-zsh = callPackage ../shells/zsh/oh-my-zsh { };