Unverified Commit 7a4d8131 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #208161 from SuperSandro2000/nginx-modules-meta

nginx: add meta section to modules
parents aa22d5ca 50b8c237
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ stdenv.mkDerivation {
    in noSourceRefs + postInstall;

  passthru = {
    modules = modules;
    inherit modules;
    tests = {
      inherit (nixosTests) nginx nginx-auth nginx-etag nginx-globalredirect nginx-http3 nginx-pubhtml nginx-sandbox nginx-sso;
      variants = lib.recurseIntoAttrs nixosTests.nginx-variants;
@@ -187,7 +187,8 @@ stdenv.mkDerivation {
  meta = if meta != null then meta else with lib; {
    description = "A reverse proxy and lightweight webserver";
    homepage    = "http://nginx.org";
    license     = licenses.bsd2;
    license     = [ licenses.bsd2 ]
      ++ concatMap (m: m.meta.license) modules;
    platforms   = platforms.all;
    maintainers = with maintainers; [ thoughtpolice raskin fpletz globin ajs124 ];
  };
+363 −17

File changed.

Preview size limit exceeded, changes collapsed.