nginxModules.cache-purge: 2.5 -> 2.5.1

This commit is contained in:
Izorkin 2020-08-16 10:36:58 +03:00
parent 980d487480
commit 36c95f331d
2 changed files with 16 additions and 9 deletions

View file

@ -907,6 +907,11 @@ services.transmission.settings.rpc-bind-address = "0.0.0.0";
Fontconfig 2.10.x was removed from Nixpkgs - it hasn't been used in any nixpkgs package anymore.
</para>
</listitem>
<listitem>
<para>
Nginx module <literal>nginxModules.fastcgi-cache-purge</literal> renamed to official name <literal>nginxModules.cache-purge</literal>.
</para>
</listitem>
</itemizedlist>
</section>
</section>

View file

@ -18,6 +18,8 @@ let
in
{
fastcgi-cache-purge = throw "fastcgi-cache-purge was renamed to cache-purge";
brotli = {
src = let gitsrc = pkgs.fetchFromGitHub {
owner = "google";
@ -32,6 +34,15 @@ in
inputs = [ pkgs.brotli ];
};
cache-purge = {
src = fetchFromGitHub {
owner = "nginx-modules";
repo = "ngx_cache_purge";
rev = "2.5.1";
sha256 = "0va4jz36mxj76nmq05n3fgnpdad30cslg7c10vnlhdmmic9vqncd";
};
};
coolkit = {
src = fetchFromGitHub {
owner = "FRiCKLE";
@ -78,15 +89,6 @@ in
};
};
fastcgi-cache-purge = {
src = fetchFromGitHub {
owner = "nginx-modules";
repo = "ngx_cache_purge";
rev = "2.5";
sha256 = "1f4kxagzvz10vqbcjwi57wink6xw3s1h7wlrrlrlpkmhfbf9704y";
};
};
fluentd = {
src = fetchFromGitHub {
owner = "fluent";