From a6a085c6dc581b8a351295ffe42e99e770f2f6a7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 18 Mar 2023 03:55:07 +0000 Subject: [PATCH 1/4] netdata-go-plugins: 0.51.2 -> 0.51.3 --- 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 dd3b52eca66e..462bb48bcbf5 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -1,16 +1,16 @@ { lib, fetchFromGitHub, buildGoModule }: buildGoModule rec { pname = "netdata-go-plugins"; - version = "0.51.2"; + version = "0.51.3"; src = fetchFromGitHub { owner = "netdata"; repo = "go.d.plugin"; rev = "v${version}"; - sha256 = "sha256-u87kTNM1oAmJRtm/iEESjVvQ9qEpFCGqRT8M+iVEwlI="; + sha256 = "sha256-z4sw/OJYgc2SaGsGwWcX2zAxnCkTTbK8G/XKGCGega0="; }; - vendorSha256 = "sha256-QB+Sf7biNPD8/3y9pFxOJZXtc6BaBcQsUGP7y9Wukwg="; + vendorHash = "sha256-lKoFm+wch9/ZgDSNSgYUrOq/X8DUEuSAQ4cc8UGaJzU="; doCheck = false; From bd2b3ec62b18c45293878bdff863f8c8ca663698 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 18 Mar 2023 04:20:00 +0000 Subject: [PATCH 2/4] netdata-go-plugins: 0.51.3 -> 0.51.4 https://github.com/netdata/go.d.plugin/releases/tag/v0.51.4 --- pkgs/tools/system/netdata/go.d.plugin.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/netdata/go.d.plugin.nix b/pkgs/tools/system/netdata/go.d.plugin.nix index 462bb48bcbf5..702d508d2ebf 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -1,13 +1,13 @@ { lib, fetchFromGitHub, buildGoModule }: buildGoModule rec { pname = "netdata-go-plugins"; - version = "0.51.3"; + version = "0.51.4"; src = fetchFromGitHub { owner = "netdata"; repo = "go.d.plugin"; rev = "v${version}"; - sha256 = "sha256-z4sw/OJYgc2SaGsGwWcX2zAxnCkTTbK8G/XKGCGega0="; + hash = "sha256-yYagbTrUpynvmd20MATQvsR+jZM7dhrQdfSjuayrZJI="; }; vendorHash = "sha256-lKoFm+wch9/ZgDSNSgYUrOq/X8DUEuSAQ4cc8UGaJzU="; From a0753a8b4b947179749f9f0550590835a0d7b51f Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 18 Mar 2023 04:20:00 +0000 Subject: [PATCH 3/4] netdata-go-plugins: add netdata test to passthru --- pkgs/tools/system/netdata/go.d.plugin.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/system/netdata/go.d.plugin.nix b/pkgs/tools/system/netdata/go.d.plugin.nix index 702d508d2ebf..01594683a96b 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -1,4 +1,5 @@ -{ lib, fetchFromGitHub, buildGoModule }: +{ lib, fetchFromGitHub, buildGoModule, nixosTests }: + buildGoModule rec { pname = "netdata-go-plugins"; version = "0.51.4"; @@ -21,6 +22,8 @@ buildGoModule rec { cp -r config/* $out/lib/netdata/conf.d ''; + passthru.tests = { inherit (nixosTests) netdata; }; + meta = with lib; { description = "Netdata orchestrator for data collection modules written in go"; homepage = "https://github.com/netdata/go.d.plugin"; From 53262cefb708a74efa8bdf0c72ee60d099b69ccc Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 18 Mar 2023 04:20:00 +0000 Subject: [PATCH 4/4] netdata-go-plugins: update meta --- pkgs/tools/system/netdata/go.d.plugin.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/system/netdata/go.d.plugin.nix b/pkgs/tools/system/netdata/go.d.plugin.nix index 01594683a96b..ac834ee18338 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -27,7 +27,8 @@ buildGoModule rec { meta = with lib; { description = "Netdata orchestrator for data collection modules written in go"; homepage = "https://github.com/netdata/go.d.plugin"; - license = licenses.gpl3; + changelog = "https://github.com/netdata/go.d.plugin/releases/tag/v${version}"; + license = licenses.gpl3Only; maintainers = [ ]; }; }