From 85767db6b8b30dd11191e287a6a2fe1e2275ede1 Mon Sep 17 00:00:00 2001 From: happysalada Date: Mon, 30 Nov 2020 16:34:53 +0900 Subject: [PATCH] add happysalada as maintainer --- maintainers/maintainer-list.nix | 6 ++++++ nixos/tests/vector.nix | 2 +- pkgs/tools/misc/vector/default.nix | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index c3970f3e02f..3196af76dce 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3411,6 +3411,12 @@ fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6"; }]; }; + happysalada = { + email = "raphael@megzari.com"; + github = "happysalada"; + githubId = 5317234; + name = "Raphael Megzari"; + }; haslersn = { email = "haslersn@fius.informatik.uni-stuttgart.de"; github = "haslersn"; diff --git a/nixos/tests/vector.nix b/nixos/tests/vector.nix index 3da7d0f30ed..e96c3ad152f 100644 --- a/nixos/tests/vector.nix +++ b/nixos/tests/vector.nix @@ -7,7 +7,7 @@ with pkgs.lib; { test1 = makeTest { name = "vector-test1"; - meta.maintainers = [ pkgs.stdenv.lib.maintainers.thoughtpolice ]; + meta.maintainers = [ pkgs.stdenv.lib.maintainers.happysalada ]; machine = { config, pkgs, ... }: { services.vector = { diff --git a/pkgs/tools/misc/vector/default.nix b/pkgs/tools/misc/vector/default.nix index 701e86dbf90..a6b00a5a30d 100644 --- a/pkgs/tools/misc/vector/default.nix +++ b/pkgs/tools/misc/vector/default.nix @@ -60,6 +60,6 @@ rustPlatform.buildRustPackage rec { description = "A high-performance logs, metrics, and events router"; homepage = "https://github.com/timberio/vector"; license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with maintainers; [ thoughtpolice happysalada ]; }; }