Unverified Commit 0520de52 authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

maintainers: drop eelco

Has not reacted to maintainer pings since July 2025. Dropping according
to maintainer guidelines.
parent 2f2094a5
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -7533,12 +7533,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;
+0 −1
Original line number Diff line number Diff line
@@ -745,7 +745,6 @@ with lib.maintainers;
  # same as https://github.com/orgs/NixOS/teams/nix-team
  nix = {
    members = [
      eelco
      mic92
      tomberek
      roberth
+10 −3
Original line number Diff line number Diff line
@@ -6,6 +6,13 @@
#
# Debugging:
#   drop .test from the end of this file, then use nix repl on it
let
  ghost = {
    github = "ghost";
    githubId = 0;
    name = "ghost";
  };
in
rec {
  lib = import ../../../lib;

@@ -13,8 +20,8 @@ rec {
    modules = [
      ../meta-maintainers.nix
      {
        _file = "eelco.nix";
        meta.maintainers = [ lib.maintainers.eelco ];
        _file = "ghost.nix";
        meta.maintainers = [ ghost ];
      }
    ];
  };
@@ -26,7 +33,7 @@ rec {
          lib.maintainers.pierron
          lib.maintainers.roberth
        ];
        "eelco.nix" = [ lib.maintainers.eelco ];
        "ghost.nix" = [ ghost ];
      };
    { };

Loading