From eb5855eb3ce5a14a60fd173b20133dfa3166b8c6 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Wed, 19 Jun 2024 21:42:49 +0200 Subject: [PATCH] netdata: drop maintenance from raitobezarius Change-Id: If98b9f43825ca4f9a4bd80ad6e0a4fe16c7368dc Signed-off-by: Raito Bezarius --- pkgs/tools/system/netdata/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix index 0067f8eb585b..617f40f2bca8 100644 --- a/pkgs/tools/system/netdata/default.nix +++ b/pkgs/tools/system/netdata/default.nix @@ -153,8 +153,6 @@ stdenv.mkDerivation rec { (lib.cmakeBool "ENABLE_PLUGIN_SYSTEMD_JOURNAL" withSystemdJournal) (lib.cmakeBool "ENABLE_PLUGIN_NETWORK_VIEWER" withNetworkViewer) (lib.cmakeBool "ENABLE_PLUGIN_EBPF" withEbpf) - # raitobezarius: I do not wish to maintain Xen-related things alone, thus, disabled. - # Feel free to open an issue / PR to fix this. (lib.cmakeBool "ENABLE_PLUGIN_XENSTAT" false) (lib.cmakeBool "ENABLE_PLUGIN_CUPS" withCups) (lib.cmakeBool "ENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE" withConnPrometheus) @@ -209,6 +207,6 @@ stdenv.mkDerivation rec { license = [ licenses.gpl3Plus ] ++ lib.optionals (withCloudUi) [ licenses.ncul1 ]; platforms = platforms.unix; - maintainers = with maintainers; [ raitobezarius ]; + maintainers = [ ]; }; }