Unverified Commit aa3b7a00 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

OWNERS: add owners for OctoDNS (#402889)

parents 24d76e99 b6af2169
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -466,3 +466,6 @@ pkgs/development/beam-modules/ @NixOS/beam
pkgs/development/interpreters/erlang/   @NixOS/beam
pkgs/development/interpreters/elixir/   @NixOS/beam
pkgs/development/interpreters/lfe/      @NixOS/beam

# OctoDNS
pkgs/tools/networking/octodns/ @anthonyroussel
+6 −0
Original line number Diff line number Diff line
@@ -924,6 +924,12 @@ with lib.maintainers;
    enableFeatureFreezePing = true;
  };

  octodns = {
    members = [ anthonyroussel ];
    scope = "Maintain the ecosystem around OctoDNS";
    shortName = "OctoDNS";
  };

  openstack = {
    members = [
      SuperSandro2000
+1 −1
Original line number Diff line number Diff line
@@ -74,6 +74,6 @@ python3Packages.buildPythonApplication rec {
    homepage = "https://github.com/octodns/octodns";
    changelog = "https://github.com/octodns/octodns/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = [ maintainers.anthonyroussel ];
    maintainers = teams.octodns.members;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -45,6 +45,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/octodns/octodns-bind";
    changelog = "https://github.com/octodns/octodns-bind/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = [ ];
    maintainers = teams.octodns.members;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -43,6 +43,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/octodns/octodns-cloudflare/";
    changelog = "https://github.com/octodns/octodns-cloudflare/blob/${version}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ret2pop ];
    maintainers = lib.teams.octodns.members ++ [ lib.maintainers.ret2pop ];
  };
}
Loading