Merge pull request #221765 from r-ryantm/auto-update/netdata-go-plugins
netdata-go-plugins: 0.51.2 -> 0.51.3
This commit is contained in:
commit
4f80668e1c
@ -1,16 +1,17 @@
|
|||||||
{ lib, fetchFromGitHub, buildGoModule }:
|
{ lib, fetchFromGitHub, buildGoModule, nixosTests }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "netdata-go-plugins";
|
pname = "netdata-go-plugins";
|
||||||
version = "0.51.2";
|
version = "0.51.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "netdata";
|
owner = "netdata";
|
||||||
repo = "go.d.plugin";
|
repo = "go.d.plugin";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-u87kTNM1oAmJRtm/iEESjVvQ9qEpFCGqRT8M+iVEwlI=";
|
hash = "sha256-yYagbTrUpynvmd20MATQvsR+jZM7dhrQdfSjuayrZJI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-QB+Sf7biNPD8/3y9pFxOJZXtc6BaBcQsUGP7y9Wukwg=";
|
vendorHash = "sha256-lKoFm+wch9/ZgDSNSgYUrOq/X8DUEuSAQ4cc8UGaJzU=";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
@ -21,10 +22,13 @@ buildGoModule rec {
|
|||||||
cp -r config/* $out/lib/netdata/conf.d
|
cp -r config/* $out/lib/netdata/conf.d
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = { inherit (nixosTests) netdata; };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Netdata orchestrator for data collection modules written in go";
|
description = "Netdata orchestrator for data collection modules written in go";
|
||||||
homepage = "https://github.com/netdata/go.d.plugin";
|
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 = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user