mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nginxModules: renamed module ngx_aws_auth to aws-auth
This commit is contained in:
parent
772f5d5401
commit
5c70c5eeaa
2 changed files with 12 additions and 10 deletions
|
@ -910,6 +910,7 @@ services.transmission.settings.rpc-bind-address = "0.0.0.0";
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Nginx module <literal>nginxModules.fastcgi-cache-purge</literal> renamed to official name <literal>nginxModules.cache-purge</literal>.
|
Nginx module <literal>nginxModules.fastcgi-cache-purge</literal> renamed to official name <literal>nginxModules.cache-purge</literal>.
|
||||||
|
Nginx module <literal>nginxModules.ngx_aws_auth</literal> renamed to official name <literal>nginxModules.aws-auth</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
|
@ -20,6 +20,17 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
fastcgi-cache-purge = throw "fastcgi-cache-purge was renamed to cache-purge";
|
fastcgi-cache-purge = throw "fastcgi-cache-purge was renamed to cache-purge";
|
||||||
|
ngx_aws_auth = throw "fastcgi-cache-purge was renamed to aws-auth";
|
||||||
|
|
||||||
|
aws-auth = {
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
name = "aws-auth";
|
||||||
|
owner = "anomalizer";
|
||||||
|
repo = "ngx_aws_auth";
|
||||||
|
rev = "2.1.1";
|
||||||
|
sha256 = "10z67g40w7wpd13fwxyknkbg3p6hn61i4v8xw6lh27br29v1y6h9";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
brotli = {
|
brotli = {
|
||||||
src = let gitsrc = pkgs.fetchFromGitHub {
|
src = let gitsrc = pkgs.fetchFromGitHub {
|
||||||
|
@ -223,16 +234,6 @@ in
|
||||||
} + "/naxsi_src";
|
} + "/naxsi_src";
|
||||||
};
|
};
|
||||||
|
|
||||||
ngx_aws_auth = {
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
name = "ngx_aws_auth";
|
|
||||||
owner = "anomalizer";
|
|
||||||
repo = "ngx_aws_auth";
|
|
||||||
rev = "2.1.1";
|
|
||||||
sha256 = "10z67g40w7wpd13fwxyknkbg3p6hn61i4v8xw6lh27br29v1y6h9";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
opentracing = {
|
opentracing = {
|
||||||
src =
|
src =
|
||||||
let src' = fetchFromGitHub {
|
let src' = fetchFromGitHub {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue