Skip to content

Commit

Permalink
treewide: add Jitsi maintainers
Browse files Browse the repository at this point in the history
* makes jitsi maintainer team
  • Loading branch information
ryantm committed Aug 4, 2020
1 parent edd9e3e commit c4814c0
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions maintainers/team-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ with lib.maintainers; {
scope = "Maintain GNOME desktop environment and platform.";
};

jitsi = {
members = [
mmilata
petabyteboy
prusnak
ryantm
];
scope = "Maintain Jitsi.";
};

matrix = {
members = [
ma27
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/jicofo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ in
mkDefault "${pkgs.jicofo}/etc/jitsi/jicofo/logging.properties-journal";
};

meta.maintainers = with lib.maintainers; [ ];
meta.maintainers = lib.teams.jitsi.members;
}
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/jitsi-videobridge.nix
Original file line number Diff line number Diff line change
Expand Up @@ -272,5 +272,5 @@ in
}];
};

meta.maintainers = with lib.maintainers; [ ];
meta.maintainers = lib.teams.jitsi.members;
}
2 changes: 1 addition & 1 deletion nixos/modules/services/web-apps/jitsi-meet.nix
Original file line number Diff line number Diff line change
Expand Up @@ -329,5 +329,5 @@ in
};
};

meta.maintainers = with lib.maintainers; [ ];
meta.maintainers = lib.teams.jitsi.members;
}
4 changes: 2 additions & 2 deletions nixos/tests/jitsi-meet.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "jitsi-meet";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ mmilata ];
meta = with pkgs.stdenv.lib; {
maintainers = teams.jitsi.members;
};

nodes = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
description = "Jitsi Meet desktop application powered by Electron";
homepage = "https://github.com/jitsi/jitsi-meet-electron";
license = licenses.asl20;
maintainers = with maintainers; [ prusnak ];
maintainers = teams.jitsi.members;
platforms = [ "x86_64-linux" ];
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ stdenv.mkDerivation rec {
description = "Open Source Video Calls and Chat";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = with maintainers; [];
maintainers = teams.jitsi.members;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/jicofo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ stdenv.mkDerivation {
'';
homepage = "https://github.com/jitsi/jicofo";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = teams.jitsi.members;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/jitsi-videobridge/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ stdenv.mkDerivation {
'';
homepage = "https://github.com/jitsi/jitsi-videobridge";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = teams.jitsi.members;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/web-apps/jitsi-meet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/jitsi/jitsi-meet";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = teams.jitsi.members;
platforms = platforms.all;
};
}

0 comments on commit c4814c0

Please sign in to comment.