From a100282d2a08d7f00bde6741175c23a2aea474bd Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 10 Aug 2023 18:35:05 +0200 Subject: [PATCH 1/3] netdata: 1.41.0 -> 1.42.0 https://github.com/netdata/netdata/releases/tag/v1.42.0 --- pkgs/tools/system/netdata/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix index c99151299eac..420cb2880af6 100644 --- a/pkgs/tools/system/netdata/default.nix +++ b/pkgs/tools/system/netdata/default.nix @@ -17,14 +17,14 @@ stdenv.mkDerivation rec { # Don't forget to update go.d.plugin.nix as well - version = "1.41.0"; + version = "1.42.0"; pname = "netdata"; src = fetchFromGitHub { owner = "netdata"; repo = "netdata"; rev = "v${version}"; - sha256 = "sha256-MZQ1ZTghH4bN7kCMqbyQlAGSgE70sYJxjiamTTH/6ds="; + hash = "sha256-Gd+lZVi0bU/7dXCZaPyRwWKkFOm+QNbuwgxcXS2YO7E="; fetchSubmodules = true; }; From 022ab8cd2d569ad151bcd08ee662e9941e0c40fa Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 10 Aug 2023 18:35:17 +0200 Subject: [PATCH 2/3] netdata-go-plugins: 0.54.0 -> 0.54.1 https://github.com/netdata/go.d.plugin/releases/tag/v0.54.1 --- pkgs/tools/system/netdata/go.d.plugin.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/netdata/go.d.plugin.nix b/pkgs/tools/system/netdata/go.d.plugin.nix index b852fa868673..d53d3568457e 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "netdata-go-plugins"; - version = "0.54.0"; + version = "0.54.1"; src = fetchFromGitHub { owner = "netdata"; repo = "go.d.plugin"; rev = "v${version}"; - hash = "sha256-lfehYMBAIKy9sK/dzmVewbOazgc7Yt9qAJsUdQyTTHA="; + hash = "sha256-3cBgXkvXhSTwQ6qbUbH1nOba5QkjSKtzi2rb+OY06jE="; }; - vendorHash = "sha256-lVYnL88adyrb0i5o9GXPsddD9i/lKYg/kw0+tNlgjt0="; + vendorHash = "sha256-DLRcS8wqnwGRLEeMqWj5SfUvE3fz1hty9jItNfmCdRw="; doCheck = false; From ffba3f19b5d8e15ed9ee6bf1bc33b133ae56deaa Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 10 Aug 2023 18:43:34 +0200 Subject: [PATCH 3/3] netdata-go-plugins: add raitobezarius as a maintainer Because apparently no one is maintaining it and I am de-facto netdata maintainer. --- pkgs/tools/system/netdata/go.d.plugin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/netdata/go.d.plugin.nix b/pkgs/tools/system/netdata/go.d.plugin.nix index d53d3568457e..aebc633a5307 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -29,6 +29,6 @@ buildGoModule rec { homepage = "https://github.com/netdata/go.d.plugin"; changelog = "https://github.com/netdata/go.d.plugin/releases/tag/v${version}"; license = licenses.gpl3Only; - maintainers = [ ]; + maintainers = [ maintainers.raitobezarius ]; }; }