From ff167d8172c3cca60cb3be5a65ef85a93598f3ea Mon Sep 17 00:00:00 2001 From: Ɓukasz Niemier Date: Fri, 3 Feb 2023 10:22:38 +0100 Subject: netdata-go.d.plugin: from 0.32.3 to 0.50.0 Netdata package has been updated several times in the meantime, but this (somewhat crucial) dependency was left forgotten and unloved. So this is quite huge jump in versions, but it is needed as many of the collectors were added there (the one I have noticed that is missing is PostgreSQL collector, but I bet that there is more). It also adds missing Bash `buildInput` as I noticed that it is needed by some shell collectors (cgroups I believe). --- pkgs/tools/system/netdata/go.d.plugin.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/system/netdata/go.d.plugin.nix b/pkgs/tools/system/netdata/go.d.plugin.nix index ebc552687cf7..5b45ddbb3ae2 100644 --- a/pkgs/tools/system/netdata/go.d.plugin.nix +++ b/pkgs/tools/system/netdata/go.d.plugin.nix @@ -1,17 +1,16 @@ -{ lib, fetchFromGitHub, buildGoModule }: - -buildGoModule rec { +{ lib, fetchFromGitHub, buildGo119Module }: +buildGo119Module rec { pname = "netdata-go.d.plugin"; - version = "0.32.3"; + version = "0.50.0"; src = fetchFromGitHub { owner = "netdata"; repo = "go.d.plugin"; rev = "v${version}"; - sha256 = "sha256-SayFqr6n6OLLUXseYiR8iBIf2xeDEHXHD0qBrgHY6+o="; + sha256 = "5kDc6zszVuFTDkNMuHBRwrfDnH+AdD6ULzmywtvL8iA="; }; - vendorSha256 = "sha256-tIuHWfAjvr5s2nJSnhnMZIjyy77BbobwgQoDOy4gdGI="; + vendorSha256 = "sha256-Wv6xqzpQxlZCrVnS+g9t1qiYCkm3NfXfW8XDYA9Txxs="; doCheck = false; -- cgit 1.4.1