Commit 3fd324f8 authored by Jade Lovelace's avatar Jade Lovelace
Browse files

nixos: remove historical maintainership of modules by eelco

Eelco has made several early contributions to NixOS including writing
the samba module among other things, but is more or less inactive these
days.

By my brief inspection, he has not committed to the nixos/ tree since
releasing Nix 2.13 in early 2023 and merging a PR to networking tests
slightly before that. A lot of these tests/modules are actually
unmaintained in practice, so we should update the code to reflect the
practical reality so someone can consider picking them up.
parent fe5bfe55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ in rec {
      name = "nixos-${nixos.channel.version}";
      meta = {
        description = "Release-critical builds for the NixOS channel";
        maintainers = with pkgs.lib.maintainers; [ eelco ];
        maintainers = with pkgs.lib.maintainers; [ ];
      };
      constituents = pkgs.lib.concatLists [
        [ "nixos.channel" ]
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ in rec {
    name = "nixos-${nixos.channel.version}";
    meta = {
      description = "Release-critical builds for the NixOS channel";
      maintainers = [ lib.maintainers.eelco ];
      maintainers = [ ];
    };
    constituents = lib.flatten [
      [
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
import ./make-test-python.nix {
  name = "avahi";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ eelco ];
    maintainers = [ ];
  };

  nodes = let
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ in
{
  name = "bittorrent";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ domenkozar eelco rob bobvanderlinden ];
    maintainers = [ domenkozar rob bobvanderlinden ];
  };

  nodes = {
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ in
import ./make-test-python.nix ({ pkgs, lib, ... }: {
  name = "containers-bridge";
  meta = {
    maintainers = with lib.maintainers; [ aristid aszlig eelco kampfschlaefer ];
    maintainers = with lib.maintainers; [ aristid aszlig kampfschlaefer ];
  };

  nodes.machine =
Loading