Merge pull request #44161 from Izorkin/nginx-modules

Nginx modules
This commit is contained in:
Jörg Thalheim 2018-07-30 11:39:10 +01:00 committed by GitHub
commit 9cfc9de70f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "msgpuck-${version}";
version = "2.0";
src = fetchFromGitHub {
owner = "rtsisyk";
repo = "msgpuck";
rev = "${version}";
sha256 = "0cjq86kncn3lv65vig9cqkqqv2p296ymcjjbviw0j1s85cfflps0";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake pkgconfig ];
meta = with stdenv.lib; {
description = ''A simple and efficient MsgPack binary serialization library in a self-contained header file'';
homepage = https://github.com/rtsisyk/msgpuck;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ izorkin ];
};
}

View file

@ -161,6 +161,15 @@
inputs = [ pkgs.pam ];
};
push-stream ={
src = fetchFromGitHub {
owner = "wandenberg";
repo = "nginx-push-stream-module";
rev = "0.5.4";
sha256 = "0izn7lqrp2zfl738aqa9i8c5lba97wkhcnqg8qbw3ipp5cysb2hr";
};
};
rtmp ={
src = fetchFromGitHub {
owner = "arut";
@ -214,4 +223,23 @@
sha256 = "1cjisxw1wykll683nw09k0i1nvzslp4dr59x58cvarpk43paim2y";
};
};
upstream-tarantool = {
src = fetchFromGitHub {
owner = "tarantool";
repo = "nginx_upstream_module";
rev = "v2.7";
sha256 = "05dwj0caj910p7kan2qjvm6x2x601igryhny2xzr47hhsk5q1cnx";
};
inputs = [ pkgs.msgpuck.dev pkgs.yajl ];
};
vts = {
src = fetchFromGitHub {
owner = "vozlt";
repo = "nginx-module-vts";
rev = "v0.1.18";
sha256 = "1jq2s9k7hah3b317hfn9y3g1q4g4x58k209psrfsqs718a9sw8c7";
};
};
}

View file

@ -8330,6 +8330,8 @@ with pkgs;
msgpack-tools = callPackage ../development/tools/msgpack-tools { };
msgpuck = callPackage ../development/libraries/msgpuck { };
msitools = callPackage ../development/tools/misc/msitools { };
multi-ghc-travis = haskell.lib.justStaticExecutables haskellPackages.multi-ghc-travis;