maintainers/teams: add matrix team

wip/yesman
Maximilian Bosch 4 years ago
parent dcf36b65c3
commit 650617253e
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 12
      maintainers/team-list.nix
  2. 1
      nixos/modules/services/misc/matrix-synapse.nix
  3. 4
      nixos/tests/matrix-synapse.nix
  4. 2
      pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
  5. 2
      pkgs/applications/networking/instant-messengers/riot/riot-web.nix
  6. 2
      pkgs/servers/matrix-synapse/default.nix

@ -57,6 +57,18 @@ with lib.maintainers; {
scope = "Maintain GNOME desktop environment and platform.";
};
matrix = {
members = [
ma27
pacien
fadenb
mguentner
ekleog
ralith
];
scope = "Maintain the ecosystem around Matrix, a decentralized messenger.";
};
php = {
members = [
aanderse

@ -727,5 +727,6 @@ in {
];
meta.doc = ./matrix-synapse.xml;
meta.maintainers = teams.matrix.members;
}

@ -29,8 +29,8 @@ import ./make-test-python.nix ({ pkgs, ... } : let
in {
name = "matrix-synapse";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ corngood ];
meta = with pkgs.stdenv.lib; {
maintainers = teams.matrix.members;
};
nodes = {

@ -78,7 +78,7 @@ in mkYarnPackage rec {
description = "A feature-rich client for Matrix.org";
homepage = "https://about.riot.im/";
license = licenses.asl20;
maintainers = with maintainers; [ pacien worldofpeace ma27 ];
maintainers = teams.matrix.members;
inherit (electron.meta) platforms;
};
}

@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "A glossy Matrix collaboration client for the web";
homepage = "http://riot.im/";
maintainers = with stdenv.lib.maintainers; [ bachp pacien ma27 ];
maintainers = stdenv.lib.teams.matrix.members;
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.all;
hydraPlatforms = [];

@ -76,6 +76,6 @@ buildPythonApplication rec {
homepage = "https://matrix.org";
description = "Matrix reference homeserver";
license = licenses.asl20;
maintainers = with maintainers; [ ralith roblabla ekleog pacien ma27 ];
maintainers = teams.matrix.members;
};
}

Loading…
Cancel
Save