diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index f391ea66c9d5..39b7ff56700f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -7370,12 +7370,6 @@ github = "eigengrau"; githubId = 4939947; }; - eihqnh = { - email = "eihqnh@outlook.com"; - github = "eihqnh"; - githubId = 40905037; - name = "eihqnh"; - }; eikek = { email = "eike.kettner@posteo.de"; github = "eikek"; diff --git a/pkgs/by-name/ca/cabinpkg/package.nix b/pkgs/by-name/ca/cabinpkg/package.nix index 2672addf2fff..472d56fd7615 100644 --- a/pkgs/by-name/ca/cabinpkg/package.nix +++ b/pkgs/by-name/ca/cabinpkg/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { homepage = "https://cabinpkg.com"; description = "Package manager and build system for C++"; license = lib.licenses.asl20; - maintainers = [ lib.maintainers.eihqnh ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "cabin"; }; diff --git a/pkgs/by-name/ca/cargo-seek/package.nix b/pkgs/by-name/ca/cargo-seek/package.nix index cc44c9330682..30cfdc3e53f1 100644 --- a/pkgs/by-name/ca/cargo-seek/package.nix +++ b/pkgs/by-name/ca/cargo-seek/package.nix @@ -41,7 +41,7 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/tareqimbasher/cargo-seek"; changelog = "https://github.com/tareqimbasher/cargo-seek/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ eihqnh ]; + maintainers = [ ]; mainProgram = "cargo-seek"; }; }) diff --git a/pkgs/by-name/po/podlet/package.nix b/pkgs/by-name/po/podlet/package.nix index c55a43ae0f60..edf6d5cf001c 100644 --- a/pkgs/by-name/po/podlet/package.nix +++ b/pkgs/by-name/po/podlet/package.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/containers/podlet"; changelog = "https://github.com/containers/podlet/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ eihqnh ]; + maintainers = [ ]; mainProgram = "podlet"; }; } diff --git a/pkgs/by-name/sf/sftool-gui/package.nix b/pkgs/by-name/sf/sftool-gui/package.nix index 17897cdf86c4..c8624f85b52e 100644 --- a/pkgs/by-name/sf/sftool-gui/package.nix +++ b/pkgs/by-name/sf/sftool-gui/package.nix @@ -69,7 +69,7 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Download tool for the SiFli family of chips"; homepage = "https://github.com/OpenSiFli/sftool-gui"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ eihqnh ]; + maintainers = [ ]; mainProgram = "sftool"; }; }) diff --git a/pkgs/by-name/sf/sftool/package.nix b/pkgs/by-name/sf/sftool/package.nix index 58676d2fa6a2..a67399ac43c4 100644 --- a/pkgs/by-name/sf/sftool/package.nix +++ b/pkgs/by-name/sf/sftool/package.nix @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Download tool for the SiFli family of chips"; homepage = "https://github.com/OpenSiFli/sftool"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ eihqnh ]; + maintainers = [ ]; mainProgram = "sftool"; }; }) diff --git a/pkgs/development/python-modules/terminaltexteffects/default.nix b/pkgs/development/python-modules/terminaltexteffects/default.nix index 162d0788d84c..be27e31c2960 100644 --- a/pkgs/development/python-modules/terminaltexteffects/default.nix +++ b/pkgs/development/python-modules/terminaltexteffects/default.nix @@ -23,13 +23,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "terminaltexteffects" ]; - meta = with lib; { + meta = { description = "Collection of visual effects that can be applied to terminal piped stdin text"; homepage = "https://chrisbuilds.github.io/terminaltexteffects"; changelog = "https://chrisbuilds.github.io/terminaltexteffects/changeblog/"; - license = licenses.mit; - platforms = with platforms; unix; - maintainers = with maintainers; [ eihqnh ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ ]; mainProgram = "tte"; }; }