3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #57576 from marsam/init-odyssey

odyssey: init at 2019-03-12
This commit is contained in:
Ryan Mulligan 2019-03-16 20:00:07 -07:00 committed by GitHub
commit 5d5c24be36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { };