about summary refs log tree commit diff
path: root/pkgs/tools/system/netdata
diff options
context:
space:
mode:
authorŁukasz Niemier <lukasz@niemier.pl>2023-02-03 10:22:38 +0100
committerŁukasz Niemier <lukasz@niemier.pl>2023-02-07 12:53:37 +0100
commitff167d8172c3cca60cb3be5a65ef85a93598f3ea (patch)
tree59f888be92c32224deb1523ac63ccfc166841191 /pkgs/tools/system/netdata
parentb2e3a85446bb72caa528c33b9e1914f073a358f3 (diff)
downloadnixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.tar
nixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.tar.gz
nixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.tar.bz2
nixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.tar.lz
nixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.tar.xz
nixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.tar.zst
nixlib-ff167d8172c3cca60cb3be5a65ef85a93598f3ea.zip
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).
Diffstat (limited to 'pkgs/tools/system/netdata')
-rw-r--r--pkgs/tools/system/netdata/go.d.plugin.nix11
1 files 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;