mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
nginxModules.http_proxy_connect_module: 05.09.2018 -> 16.04.2019
This commit is contained in:
parent
4a11ce7f26
commit
7a5d938067
|
@ -6,8 +6,8 @@ let
|
|||
src = fetchFromGitHub {
|
||||
owner = "chobits";
|
||||
repo = "ngx_http_proxy_connect_module";
|
||||
rev = "8201639082cba702211585b03d4cc7bc51c65167";
|
||||
sha256 = "0z71x3xnlczrr2kq43w3drxj9g14fkk4jz66x921v0yb8r9mnn5a";
|
||||
rev = "18e2520b361ffebde6c08c8119ecfba113a3b53c";
|
||||
sha256 = "1nyil5n2a97nqsqarvnp4bazw4vnxifqizzw5aank4vi9xlq90b2";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -87,6 +87,14 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
http_proxy_connect_module_v15 = http_proxy_connect_module_generic "proxy_connect_rewrite_1015" // {
|
||||
supports = with lib.versions; version: major version == "1" && minor version == "15";
|
||||
};
|
||||
|
||||
http_proxy_connect_module_v14 = http_proxy_connect_module_generic "proxy_connect_rewrite_1014" // {
|
||||
supports = with lib.versions; version: major version == "1" && minor version == "14";
|
||||
};
|
||||
|
||||
ipscrub = {
|
||||
src = fetchFromGitHub {
|
||||
owner = "masonicboom";
|
||||
|
@ -335,12 +343,4 @@ in
|
|||
sha256 = "1jq2s9k7hah3b317hfn9y3g1q4g4x58k209psrfsqs718a9sw8c7";
|
||||
};
|
||||
};
|
||||
|
||||
http_proxy_connect_module_v15 = http_proxy_connect_module_generic "proxy_connect_rewrite_1015" // {
|
||||
supports = with lib.versions; version: major version == "1" && minor version == "15";
|
||||
};
|
||||
|
||||
http_proxy_connect_module_v14 = http_proxy_connect_module_generic "proxy_connect_rewrite_1014" // {
|
||||
supports = with lib.versions; version: major version == "1" && minor version == "14";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue