teams/helsinki-systems: drop

This commit is contained in:
Wolfgang Walther 2026-01-10 22:03:14 +01:00
parent 5b8c9b50fe
commit 550ed29363
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1
38 changed files with 154 additions and 68 deletions

View file

@ -386,17 +386,6 @@ with lib.maintainers;
enableFeatureFreezePing = true;
};
helsinki-systems = {
# Verify additions to this team with at least one already existing member of the team.
members = [
das_j
conni2461
helsinki-Jo
];
scope = "Group registration for packages maintained by Helsinki Systems";
shortName = "Helsinki Systems employees";
};
home-assistant = {
members = [
dotlambda

View file

@ -17,7 +17,10 @@ let
};
in
{
meta.maintainers = teams.helsinki-systems.members;
meta.maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
options.services.icingaweb2 = with types; {
enable = mkEnableOption "the icingaweb2 web interface";

View file

@ -1,9 +1,10 @@
{ pkgs, ... }:
{
name = "icingaweb2";
meta = {
maintainers = pkgs.lib.teams.helsinki-systems.members;
};
meta.maintainers = with pkgs.lib.maintainers; [
das_j
helsinki-Jo
];
nodes = {
icingaweb2 =

View file

@ -5,9 +5,13 @@ let
in
{
name = "iscsi";
meta = {
maintainers = lib.teams.deshaw.members ++ lib.teams.helsinki-systems.members;
};
meta.maintainers =
with lib.maintainers;
[
das_j
helsinki-Jo
]
++ lib.teams.deshaw.members;
nodes = {
target =

View file

@ -70,7 +70,10 @@ import ../make-test-python.nix (
{ pkgs, lib, ... }:
{
name = "lvm2-${flavour}-systemd-stage-1";
meta.maintainers = lib.teams.helsinki-systems.members;
meta.maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
nodes.machine =
{ pkgs, lib, ... }:

View file

@ -6,7 +6,10 @@ import ../make-test-python.nix (
{ pkgs, lib, ... }:
{
name = "lvm2-thinpool";
meta.maintainers = lib.teams.helsinki-systems.members;
meta.maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
nodes.machine =
{ pkgs, lib, ... }:

View file

@ -19,9 +19,12 @@ let
}:
makeTest {
name = "${name}-galera-mariabackup";
meta = {
maintainers = with lib.maintainers; [ izorkin ] ++ lib.teams.helsinki-systems.members;
};
meta.maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
izorkin
];
# The test creates a Galera cluster with 3 nodes and is checking if mariabackup-based SST works. The cluster is tested by creating a DB and an empty table on one node,
# and checking the table's presence on the other node.

View file

@ -20,9 +20,11 @@ let
}:
makeTest {
name = "${name}-replication";
meta = {
maintainers = lib.teams.helsinki-systems.members;
};
meta.maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
];
nodes = {
primary = {

View file

@ -25,9 +25,11 @@ let
}:
makeTest {
inherit name;
meta = {
maintainers = lib.teams.helsinki-systems.members;
};
meta.maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
];
nodes = {
${name} =

View file

@ -20,9 +20,10 @@ let
makeTest {
inherit name;
meta.maintainers = [
lib.maintainers.das_j
lib.maintainers.flokli
]
++ lib.teams.helsinki-systems.members;
lib.maintainers.helsinki-Jo
];
nodes = {
machine =

View file

@ -192,9 +192,10 @@ stdenv.mkDerivation rec {
];
mainProgram = "dovecot";
maintainers = with lib.maintainers; [
das_j
fpletz
helsinki-Jo
];
teams = [ lib.teams.helsinki-systems ];
platforms = lib.platforms.unix;
};
passthru.tests = {

View file

@ -43,8 +43,10 @@ stdenv.mkDerivation rec {
homepage = "https://pigeonhole.dovecot.org/";
description = "Sieve plugin for the Dovecot IMAP server";
license = lib.licenses.lgpl21Only;
maintainers = [ ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
platforms = lib.platforms.unix;
};
}

View file

@ -200,8 +200,11 @@ stdenv.mkDerivation rec {
];
mainProgram = "exim";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ tv ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
tv
];
changelog = "https://github.com/Exim/exim/blob/exim-${version}/doc/doc-txt/ChangeLog";
};
}

View file

@ -70,7 +70,10 @@ appimageTools.wrapAppImage {
homepage = "https://www.flexoptix.net";
changelog = "https://www.flexoptix.net/en/flexoptix-app/?os=linux#flexapp__modal__changelog";
license = lib.licenses.unfree;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -25,7 +25,10 @@ buildGoModule rec {
description = "Automatic GeoIP database updater";
homepage = "https://github.com/maxmind/geoipupdate";
license = with lib.licenses; [ asl20 ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
mainProgram = "geoipupdate";
};
}

View file

@ -264,7 +264,11 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://nixos.org/hydra";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ mindavi ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
mindavi
];
};
})

View file

@ -17,8 +17,11 @@ stdenv.mkDerivation rec {
description = "C library for working with MaxMind geolocation DB files";
homepage = "https://github.com/maxmind/libmaxminddb";
license = lib.licenses.asl20;
teams = [ lib.teams.helsinki-systems ];
mainProgram = "mmdblookup";
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
platforms = lib.platforms.all;
};
}

View file

@ -40,8 +40,11 @@ stdenv.mkDerivation rec {
lgpl21Plus
bsd2
];
maintainers = with lib.maintainers; [ euxane ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
euxane
helsinki-Jo
];
platforms = lib.platforms.all;
};
}

View file

@ -52,8 +52,12 @@ stdenv.mkDerivation rec {
mainProgram = "garbd";
homepage = "https://galeracluster.com/";
license = lib.licenses.lgpl2Only;
maintainers = with lib.maintainers; [ izorkin ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
izorkin
];
platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};

View file

@ -70,6 +70,9 @@ stdenv.mkDerivation rec {
bsd3
sendmail
];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -159,7 +159,11 @@ stdenv.mkDerivation rec {
homepage = "https://www.openldap.org/";
description = "Open source implementation of the Lightweight Directory Access Protocol";
license = lib.licenses.openldap;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
];
platforms = lib.platforms.unix;
};
}

View file

@ -248,7 +248,10 @@ flutter329.buildFlutterApplication rec {
homepage = "https://rustdesk.com";
changelog = "https://github.com/rustdesk/rustdesk/releases/${version}";
license = lib.licenses.agpl3Only;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
mainProgram = "rustdesk";
platforms = lib.platforms.linux; # should work on darwin as well but I have no machine to test with
};

View file

@ -55,7 +55,10 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/ep1cman/unifi-protect-backup";
changelog = "https://github.com/ep1cman/unifi-protect-backup/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
mainProgram = "unifi-protect-backup";
};
}

View file

@ -41,7 +41,10 @@ stdenv.mkDerivation rec {
homepage = "https://ipxe.org/wimboot";
description = "Windows Imaging Format bootloader";
license = lib.licenses.gpl2Plus;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -28,8 +28,11 @@ buildPecl {
description = "C extension that is a drop-in replacement for MaxMind\\Db\\Reader";
license = with lib.licenses; [ asl20 ];
homepage = "https://github.com/maxmind/MaxMind-DB-Reader-php";
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
teams = [
lib.teams.helsinki-systems
lib.teams.php
];
};

View file

@ -36,6 +36,9 @@ buildPythonPackage rec {
homepage = "https://github.com/JnyJny/bitvector";
description = "This simple bit vector implementation aims to make addressing single bits a little less fiddly";
license = lib.licenses.asl20;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -71,7 +71,10 @@ buildPythonPackage rec {
homepage = "https://github.com/JnyJny/busylight";
changelog = "https://github.com/JnyJny/busylight/releases/tag/${src.tag}";
license = lib.licenses.asl20;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
mainProgram = "busylight";
};
}

View file

@ -65,6 +65,5 @@ buildPythonPackage rec {
between python scripts. All major ciphers and hash methods are
supported. SFTP client and server mode are both supported too.
'';
teams = [ lib.teams.helsinki-systems ];
};
}

View file

@ -314,11 +314,10 @@ stdenv.mkDerivation {
broken = lib.any (m: m.meta.broken or false) modules;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [
das_j
fpletz
helsinki-Jo
raitobezarius
];
teams = with lib.teams; [
helsinki-systems
];
};
}

View file

@ -38,7 +38,10 @@ stdenvNoCC.mkDerivation rec {
'';
homepage = "https://www.icinga.com/products/icinga-web-2/";
license = lib.licenses.gpl2Plus;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
mainProgram = "icingacli";
platforms = lib.platforms.all;
};

View file

@ -28,6 +28,9 @@ stdenvNoCC.mkDerivation rec {
homepage = "https://github.com/Icinga/icinga-php-library";
license = lib.licenses.mit;
platforms = lib.platforms.all;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -28,6 +28,9 @@ stdenvNoCC.mkDerivation rec {
homepage = "https://github.com/Icinga/icinga-php-thirdparty";
license = lib.licenses.mit;
platforms = lib.platforms.all;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -128,6 +128,9 @@ stdenv.mkDerivation rec {
homepage = "https://www.icinga.com";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -63,6 +63,9 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/nextcloud/notify_push";
license = lib.licenses.agpl3Plus;
platforms = lib.platforms.linux;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -220,8 +220,12 @@ let
description = "Enhanced, drop-in replacement for MySQL";
homepage = "https://mariadb.org/";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ thoughtpolice ];
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
conni2461
das_j
helsinki-Jo
thoughtpolice
];
platforms = lib.platforms.all;
};
};

View file

@ -30,10 +30,11 @@ in
];
extraMeta = {
maintainers = with lib.maintainers; [
philiptaron
das_j
helsinki-Jo
numinit
philiptaron
];
teams = [ lib.teams.helsinki-systems ];
};
};

View file

@ -83,6 +83,9 @@ stdenv.mkDerivation rec {
description = "Commands for showing the differences between files (diff, cmp, etc.)";
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
maintainers = lib.teams.helsinki-systems.members;
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
};
}

View file

@ -112,7 +112,10 @@ stdenv.mkDerivation rec {
'';
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix ++ lib.platforms.windows;
teams = [ lib.teams.helsinki-systems ];
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
mainProgram = "gawk";
};
}