nginxModules.zip: init (#388627)

This commit is contained in:
Wolfgang Walther
2025-03-11 11:55:51 +00:00
committed by GitHub
2 changed files with 21 additions and 0 deletions

View File

@@ -314,6 +314,7 @@ stdenv.mkDerivation {
mainProgram = "nginx";
homepage = "http://nginx.org";
license = [ licenses.bsd2 ] ++ concatMap (m: m.meta.license) modules;
broken = lib.any (m: m.meta.broken or false) modules;
platforms = platforms.all;
maintainers =
with maintainers;

View File

@@ -4,6 +4,7 @@
, fetchFromGitLab
, fetchhg
, runCommand
, stdenv
, arpa2common
, brotli
@@ -1020,6 +1021,25 @@ let self = {
};
};
zip = {
name = "zip";
src = fetchFromGitHub {
name = "zip";
owner = "evanmiller";
repo = "mod_zip";
rev = "8e65b82c82c7890f67a6107271c127e9881b6313";
hash = "sha256-2bUyGsLSaomzaijnAcHQV9TNSuV7Z3G9EUbrZzLG+mk=";
};
meta = with lib; {
description = "Streaming ZIP archiver for nginx";
homepage = "https://github.com/evanmiller/mod_zip";
license = with licenses; [ bsd3 ];
broken = stdenv.hostPlatform.isDarwin;
maintainers = teams.apm.members;
};
};
zstd = {
name = "zstd";
src = fetchFromGitHub {