Unverified Commit 6b565aab authored by Robert Hensing's avatar Robert Hensing Committed by GitHub
Browse files

teams/nix: clarify relation to Nix team (#478834)

parents 65923157 d4a59719
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -83,8 +83,9 @@
# @raitobezarius is not "code owner", but is listed here to be notified of changes
# pertaining to the Nix package manager.
# i.e. no authority over those files.
pkgs/tools/package-management/nix/                    @NixOS/nix-team @raitobezarius
nixos/modules/installer/tools/nix-fallback-paths.nix  @NixOS/nix-team @raitobezarius
# Otherwise keep in-sync with lib.teams.nix.
pkgs/tools/package-management/nix/                    @Artturin @Ericson2314 @lovesegfault @Mic92 @philiptaron @roberth @tomberek @xokdvium @raitobezarius
nixos/modules/installer/tools/nix-fallback-paths.nix  @Artturin @Ericson2314 @lovesegfault @Mic92 @philiptaron @roberth @tomberek @xokdvium @raitobezarius

# Nixpkgs documentation
/maintainers/scripts/db-to-md.sh @jtojnar @ryantm
+0 −6
Original line number Diff line number Diff line
@@ -7544,12 +7544,6 @@
    githubId = 8173116;
    name = "Dean Eckert";
  };
  eelco = {
    email = "edolstra+nixpkgs@gmail.com";
    github = "edolstra";
    githubId = 1148549;
    name = "Eelco Dolstra";
  };
  ehegnes = {
    email = "eric.hegnes@gmail.com";
    github = "ehegnes";
+0 −1
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@ stdenv.mkDerivation {
  '';

  meta = {
    maintainers = with lib.maintainers; [ eelco ];
    description = "Utility to generate a Nix expression for a Perl package from CPAN";
    mainProgram = "nix-generate-from-cpan";
    platforms = lib.platforms.unix;
+0 −1
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@ stdenv.mkDerivation {
  '';

  meta = {
    maintainers = [ lib.maintainers.eelco ];
    description = "A utility for Nixpkgs contributors to check Nixpkgs for common errors";
    mainProgram = "nixpkgs-lint";
    platforms = lib.platforms.unix;
+9 −6
Original line number Diff line number Diff line
@@ -732,17 +732,20 @@ with lib.maintainers;
    enableFeatureFreezePing = true;
  };

  # same as https://github.com/orgs/NixOS/teams/nix-team
  # keep in-sync with ci/OWNERS
  nix = {
    members = [
      eelco
      artturin
      ericson2314
      lovesegfault
      mic92
      tomberek
      philiptaron
      roberth
      ericson2314
      tomberek
      xokdvium
    ];
    scope = "Maintain the Nix package manager.";
    shortName = "Nix/nix-cli ecosystem";
    scope = "Maintain the packaging for the Nix package manager itself.";
    shortName = "Nix packaging";
    enableFeatureFreezePing = true;
  };

Loading