add happysalada as maintainer

This commit is contained in:
happysalada 2020-11-30 16:34:53 +09:00
parent 627dfecadd
commit 85767db6b8
3 changed files with 8 additions and 2 deletions

View file

@ -3411,6 +3411,12 @@
fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6"; fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6";
}]; }];
}; };
happysalada = {
email = "raphael@megzari.com";
github = "happysalada";
githubId = 5317234;
name = "Raphael Megzari";
};
haslersn = { haslersn = {
email = "haslersn@fius.informatik.uni-stuttgart.de"; email = "haslersn@fius.informatik.uni-stuttgart.de";
github = "haslersn"; github = "haslersn";

View file

@ -7,7 +7,7 @@ with pkgs.lib;
{ {
test1 = makeTest { test1 = makeTest {
name = "vector-test1"; name = "vector-test1";
meta.maintainers = [ pkgs.stdenv.lib.maintainers.thoughtpolice ]; meta.maintainers = [ pkgs.stdenv.lib.maintainers.happysalada ];
machine = { config, pkgs, ... }: { machine = { config, pkgs, ... }: {
services.vector = { services.vector = {

View file

@ -60,6 +60,6 @@ rustPlatform.buildRustPackage rec {
description = "A high-performance logs, metrics, and events router"; description = "A high-performance logs, metrics, and events router";
homepage = "https://github.com/timberio/vector"; homepage = "https://github.com/timberio/vector";
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
maintainers = with maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice happysalada ];
}; };
} }