Unverified Commit 0d585220 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

nginx: add meta section to modules

Also resolve one github redirect.
parent ab953a5b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -178,7 +178,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;
@@ -189,7 +189,8 @@ stdenv.mkDerivation {
  meta = if meta != null then meta else {
    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 ];
  };
+361 −14

File changed.

Preview size limit exceeded, changes collapsed.