Merge pull request #221765 from r-ryantm/auto-update/netdata-go-plugins

netdata-go-plugins: 0.51.2 -> 0.51.3

authored by

Mario Rodas and committed by
GitHub
4f80668e e6d71af1

+9 -5
+9 -5
pkgs/tools/system/netdata/go.d.plugin.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 1 + { lib, fetchFromGitHub, buildGoModule, nixosTests }: 2 + 2 3 buildGoModule rec { 3 4 pname = "netdata-go-plugins"; 4 - version = "0.51.2"; 5 + version = "0.51.4"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "netdata"; 8 9 repo = "go.d.plugin"; 9 10 rev = "v${version}"; 10 - sha256 = "sha256-u87kTNM1oAmJRtm/iEESjVvQ9qEpFCGqRT8M+iVEwlI="; 11 + hash = "sha256-yYagbTrUpynvmd20MATQvsR+jZM7dhrQdfSjuayrZJI="; 11 12 }; 12 13 13 - vendorSha256 = "sha256-QB+Sf7biNPD8/3y9pFxOJZXtc6BaBcQsUGP7y9Wukwg="; 14 + vendorHash = "sha256-lKoFm+wch9/ZgDSNSgYUrOq/X8DUEuSAQ4cc8UGaJzU="; 14 15 15 16 doCheck = false; 16 17 ··· 21 22 cp -r config/* $out/lib/netdata/conf.d 22 23 ''; 23 24 25 + passthru.tests = { inherit (nixosTests) netdata; }; 26 + 24 27 meta = with lib; { 25 28 description = "Netdata orchestrator for data collection modules written in go"; 26 29 homepage = "https://github.com/netdata/go.d.plugin"; 27 - license = licenses.gpl3; 30 + changelog = "https://github.com/netdata/go.d.plugin/releases/tag/v${version}"; 31 + license = licenses.gpl3Only; 28 32 maintainers = [ ]; 29 33 }; 30 34 }