forked from mirrors/nixpkgs
odyssey: init at 2019-03-12
This commit is contained in:
parent
da1a2b1eea
commit
fef17b195a
28
pkgs/tools/misc/odyssey/default.nix
Normal file
28
pkgs/tools/misc/odyssey/default.nix
Normal 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" ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue