Unverified Commit 79301ed3 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

nginxModules.zip: init (#388627)

parents 72c38f95 95d84cd2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
+20 −0
Original line number Diff line number Diff line
@@ -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 {